From 927f3abdc469775f666e5778edfa9693663b4871 Mon Sep 17 00:00:00 2001 From: Lexi Winter Date: Wed, 4 Jun 2025 11:59:55 +0100 Subject: lfacme-renew: add -f option --- lfacme-renew.sh.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lfacme-renew.sh.in') 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;; -- cgit v1.2.3