aboutsummaryrefslogtreecommitdiffstats
path: root/lfacme-renew.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'lfacme-renew.sh.in')
-rw-r--r--lfacme-renew.sh.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/lfacme-renew.sh.in b/lfacme-renew.sh.in
index 5b471c7..34d2c01 100644
--- a/lfacme-renew.sh.in
+++ b/lfacme-renew.sh.in
@@ -2,7 +2,7 @@
# This source code is released into the public domain.
# Parse command-line arguments.
-args=$(getopt c:v $*)
+args=$(getopt c:fv $*)
if [ $? -ne 0 ]; then
exit 1
fi
@@ -16,6 +16,9 @@ while :; do
-c)
_CONFDIR="$2"
shift; shift;;
+ -f)
+ _uacme_flags="$_uacme_flags -f"
+ shift;;
-v)
LFACME_VERBOSE=1
shift;;