From 15010d062ae276a92065cd6ea7dc94b749e20756 Mon Sep 17 00:00:00 2001 From: Lexi Winter Date: Wed, 4 Jun 2025 10:42:19 +0100 Subject: allow PREFIX to be customised --- 900.lfacme.sh.in | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 900.lfacme.sh.in (limited to '900.lfacme.sh.in') diff --git a/900.lfacme.sh.in b/900.lfacme.sh.in new file mode 100644 index 0000000..f1fae33 --- /dev/null +++ b/900.lfacme.sh.in @@ -0,0 +1,29 @@ +#! /bin/sh +# This source code is released into the public domain. +# +# Run lfacme-renew to renew ACME certificates. + +if [ -r /etc/defaults/periodic.conf ]; then + . /etc/defaults/periodic.conf + source_periodic_confs +fi + +PATH=$PATH:__PREFIX__/bin:__PREFIX__/sbin +export PATH + +# Exit if lfacme isn't installed but the periodic script was left over +# for some reason. +if ! [ -x __BINDIR__/lfacme-renew ]; then + exit 0 +fi + +case "$daily_lfacme_enable" in +[Yy][Ee][Ss]) + printf 'Renewing ACME certificates with lfacme:\n' + + __BINDIR__/lfacme-renew + ;; + +*) + ;; +esac -- cgit v1.2.3