summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--etc/ca.conf2
-rwxr-xr-xsign-ca.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/etc/ca.conf b/etc/ca.conf
index b4e8ca3..aa8b4ba 100644
--- a/etc/ca.conf
+++ b/etc/ca.conf
@@ -1,7 +1,7 @@
#!/bin/bash
# how long do we keep the old signature of the root-ca (days)
-ca_min_duration=60
+ca_keep_duration=60
# which system user owns the ca
ca_user='erich'
diff --git a/sign-ca.in b/sign-ca.in
index f000dc3..9d1bb43 100755
--- a/sign-ca.in
+++ b/sign-ca.in
@@ -16,7 +16,7 @@ fi
if [ -f '#ETCDIR#/simple-pki/ca/root-ca.crt' ]; then
if [ ! -f '#ETCDIR#/simple-pki/ca/root-ca.crt.old' ] \
- || [ "$(stat -c%Y '#ETCDIR#/simple-pki/ca/root-ca.crt.old')" -lt "$(($(date +%s)-60*60*24*ca_min_duration))" ]; then
+ || [ "$(stat -c%Y '#ETCDIR#/simple-pki/ca/root-ca.crt.old')" -lt "$(($(date +%s)-60*60*24*ca_keep_duration))" ]; then
mv \
'#ETCDIR#/simple-pki/ca/root-ca.crt' \
'#ETCDIR#/simple-pki/ca/root-ca.crt.old'