mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
service Some machines use certbot, but don't have nginx so we shouldn't force the reload here. Signed-off-by: Florian Pritz <bluewind@xinu.at>
10 lines
280 B
SYSTEMD
10 lines
280 B
SYSTEMD
[Unit]
|
|
Description=Let's Encrypt renewal
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=/usr/bin/certbot renew --rsa-key-size 4096 \
|
|
--pre-hook "/etc/letsencrypt/hook.sh pre" \
|
|
--post-hook "/etc/letsencrypt/hook.sh post" \
|
|
--renew-hook "/etc/letsencrypt/hook.sh renew"
|