diff options
author | Instrumental <jonathan.gathman@att.com> | 2018-09-25 08:25:52 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2018-09-25 08:26:05 -0500 |
commit | c3ca46e074d73b7aca3fb6331203552968119070 (patch) | |
tree | e121bc6a2a1db86d4f3f0b086a5a642d8962b9a9 /conf/CA | |
parent | 54883b4545dc32a5e4c7fbe0a49ef5b89a615435 (diff) |
CA serial
Issue-ID: AAF-517
Change-Id: I5306f9e6e5c2692a2f4a96ff25fb7badc5a586db
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'conf/CA')
-rw-r--r-- | conf/CA/bootstrap.sh | 2 | ||||
-rw-r--r-- | conf/CA/newCA.sh | 2 | ||||
-rw-r--r-- | conf/CA/newIntermediate.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/conf/CA/bootstrap.sh b/conf/CA/bootstrap.sh index 10290075..fba4d6a8 100644 --- a/conf/CA/bootstrap.sh +++ b/conf/CA/bootstrap.sh @@ -9,7 +9,7 @@ chmod 755 certs newcerts touch index.txt echo "unique_subject = no" > index.txt.attr if [ ! -e ./serial ]; then - echo '01' > ./serial + echo $(date +%s) > ./serial fi NAME=aaf.bootstrap diff --git a/conf/CA/newCA.sh b/conf/CA/newCA.sh index 49b12c3f..698307a5 100644 --- a/conf/CA/newCA.sh +++ b/conf/CA/newCA.sh @@ -9,7 +9,7 @@ touch index.txt echo "unique_subject = no" > index.txt.attr if [ ! -e serial ]; then - echo '01' > serial + echo $(date +%s) > serial fi if [ "$1" == "" ]; then diff --git a/conf/CA/newIntermediate.sh b/conf/CA/newIntermediate.sh index b548dd45..e09a4fcf 100644 --- a/conf/CA/newIntermediate.sh +++ b/conf/CA/newIntermediate.sh @@ -4,7 +4,7 @@ if [ -e intermediate.serial ]; then ((SERIAL=`cat intermediate.serial` + 1)) else - SERIAL=1 + SERIAL=$(date +%s) fi echo $SERIAL > intermediate.serial DIR=intermediate_$SERIAL |