aboutsummaryrefslogtreecommitdiffstats
path: root/lfacme-renew.sh.in
diff options
context:
space:
mode:
authorLexi Winter <lexi@le-fay.org>2025-06-04 11:59:55 +0100
committerLexi Winter <lexi@le-fay.org>2025-06-04 11:59:55 +0100
commit927f3abdc469775f666e5778edfa9693663b4871 (patch)
tree8903207d55c320707214d380103641539a22dd8a /lfacme-renew.sh.in
parentf23b3c48058514cd1bbf1c240386790fc7df3c79 (diff)
downloadlfacme-927f3abdc469775f666e5778edfa9693663b4871.tar.gz
lfacme-927f3abdc469775f666e5778edfa9693663b4871.tar.bz2
lfacme-renew: add -f option
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;;