Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/TI12-security/trunk/esg_pki_provisioning/update_trust_roots.cfg@6482
Line | |
---|
1 | #!/bin/bash |
---|
2 | # |
---|
3 | # Script to update/create a Java key store and add certificates via MyProxy |
---|
4 | # provisioning |
---|
5 | # |
---|
6 | # A configuration file is required of the form: |
---|
7 | # |
---|
8 | # |
---|
9 | # @author P J Kershaw 03/02/2010 |
---|
10 | # |
---|
11 | # @copyright: (C) 2010 STFC |
---|
12 | # |
---|
13 | # @license: BSD |
---|
14 | # |
---|
15 | # $Id$ |
---|
16 | |
---|
17 | # List of MyProxy servers - quote the list |
---|
18 | myproxy_servers="myproxy.ceda.ac.uk gabriel.badc.rl.ac.uk" |
---|
19 | |
---|
20 | # file path for Java Key store to be created/updated |
---|
21 | keystore="./keystore" |
---|
22 | |
---|
23 | # Java Key store password. If omitted, it will be prompted for from stdin |
---|
24 | keystore_passwd=123456 |
---|
25 | |
---|
26 | # Directory for storage of temporary DER files used by keytool |
---|
27 | tmp_dir=./ |
---|
Note: See
TracBrowser
for help on using the repository browser.