Changeset 7264
- Timestamp:
- 04/08/10 10:18:37 (11 years ago)
- Location:
- TI12-security/trunk/esg_keytool_utils
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/esg_keytool_utils/export_keystore_certs2pems.cfg
r7263 r7264 28 28 # List of aliases corresponding to keystore certificates to export - leave out/ 29 29 # comment out this item in order to export all 30 #aliases=myalias1 myalias2 30 #aliases="myalias1 myalias2" 31 aliases="d573507a 367b75c3" -
TI12-security/trunk/esg_keytool_utils/export_keystore_certs2pems.sh
r7263 r7264 61 61 fi 62 62 63 # Aliases for all the stored certificates 64 aliases=$(keytool -list -keystore $keystore -storepass $keystore_passwd | grep trustedCertEntry|awk -F, '{print $1}') 63 if [ -z "$aliases" ]; then 64 # Get aliases for all the stored certificates 65 aliases=$(keytool -list -keystore $keystore -storepass $keystore_passwd | grep trustedCertEntry|awk -F, '{print $1}') 66 fi 65 67 66 68 # Export based on alias
Note: See TracChangeset
for help on using the changeset viewer.