aboutsummaryrefslogtreecommitdiffstats
path: root/900.lfacme.sh
diff options
context:
space:
mode:
authorLexi Winter <ivy@FreeBSD.org>2025-06-04 10:42:19 +0100
committerLexi Winter <ivy@FreeBSD.org>2025-06-04 10:56:04 +0100
commit15010d062ae276a92065cd6ea7dc94b749e20756 (patch)
tree8745f89f933826afbb329b4fc447186a1200610d /900.lfacme.sh
parent09aa3870070960d37d7bdbb724f4ac7b68395fdf (diff)
downloadlfacme-15010d062ae276a92065cd6ea7dc94b749e20756.tar.gz
lfacme-15010d062ae276a92065cd6ea7dc94b749e20756.tar.bz2
allow PREFIX to be customised
Diffstat (limited to '900.lfacme.sh')
-rw-r--r--900.lfacme.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/900.lfacme.sh b/900.lfacme.sh
deleted file mode 100644
index dabb890..0000000
--- a/900.lfacme.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#! /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:/usr/local/bin:/usr/local/sbin
-export PATH
-
-# Exit if lfacme isn't installed but the periodic script was left over
-# for some reason.
-if ! [ -x /usr/local/sbin/lfacme-renew ]; then
- exit 0
-fi
-
-case "$daily_lfacme_enable" in
-[Yy][Ee][Ss])
- printf 'Renewing ACME certificates with lfacme:\n'
-
- /usr/local/sbin/lfacme-renew
- ;;
-
-*)
- ;;
-esac