mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-07-09 22:52:40 +02:00
+12
-1
@@ -754,7 +754,12 @@ command_sign_domains() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# shellcheck disable=SC2086
|
# shellcheck disable=SC2086
|
||||||
sign_domain ${line}
|
if [[ "${PARAM_KEEP_GOING:-}" = "yes" ]]; then
|
||||||
|
sign_domain ${line} &
|
||||||
|
wait $! || true
|
||||||
|
else
|
||||||
|
sign_domain ${line}
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# remove temporary domains.txt file if used
|
# remove temporary domains.txt file if used
|
||||||
@@ -995,6 +1000,12 @@ main() {
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
# PARAM_Usage: --keep-going (-g)
|
||||||
|
# PARAM_Description: Keep going after encountering an error while creating/renewing multiple certificates in cron mode
|
||||||
|
--keep-going|-g)
|
||||||
|
PARAM_KEEP_GOING="yes"
|
||||||
|
;;
|
||||||
|
|
||||||
# PARAM_Usage: --force (-x)
|
# PARAM_Usage: --force (-x)
|
||||||
# PARAM_Description: Force renew of certificate even if it is longer valid than value in RENEW_DAYS
|
# PARAM_Description: Force renew of certificate even if it is longer valid than value in RENEW_DAYS
|
||||||
--force|-x)
|
--force|-x)
|
||||||
|
|||||||
Reference in New Issue
Block a user