You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
272 B
11 lines
272 B
5 years ago
|
#!/bin/sh
|
||
|
|
||
|
{% if letsencrypt_auto_renew | default(True) %}
|
||
|
sleep $[ $RANDOM % 900 ];
|
||
|
systemd-cat dehydrated --cron --keep-going
|
||
|
{% endif %}
|
||
|
|
||
|
{% if letsencrypt_revoke_old_certs | default(False) and ansible_os_family == 'RedHat' %}
|
||
|
systemd-cat dehydrated_revoke
|
||
|
{% endif %}
|