Alan Orth
158df52e35
The `ConditionFileIsExecutable` goes in the [Unit] section! This fixes the error: systemd[1]: [/etc/systemd/system/renew-letsencrypt.service:6] Unknown lvalue 'ConditionFileIsExecutable' in section 'Service'
8 lines
273 B
Django/Jinja
8 lines
273 B
Django/Jinja
[Unit]
|
|
Description=Renew Let's Encrypt certificates
|
|
ConditionFileIsExecutable={{ letsencrypt_certbot_dest }}
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart={{ letsencrypt_certbot_dest }} renew --standalone --pre-hook "/bin/systemctl stop nginx" --post-hook "/bin/systemctl start nginx"
|