10 lines
221 B
YAML
10 lines
221 B
YAML
---
|
|
- name: renew certbot ssl certificates weekly
|
|
become: true
|
|
ansible.builtin.cron:
|
|
name: certbot_renew
|
|
special_time: weekly
|
|
job: >-
|
|
certbot renew --post-hook 'systemctl restart nginx'
|
|
tags: cron
|