Removes --quiet parameter for the ubuntu 16.04 version of letsencrypt, which does not support it.

This commit is contained in:
Stephan Allner 2017-10-06 12:51:45 +02:00
parent f00a0ba181
commit 5373d04fd8
3 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,7 @@
- name: Add cron job for certbot renewal (if configured).
cron:
name: Certbot automatic renewal.
job: "{{ certbot_script }} renew --quiet --no-self-upgrade"
job: "{{ certbot_script }} {{certbot_renew_command}}"
minute: "{{ certbot_auto_renew_minute }}"
hour: "{{ certbot_auto_renew_hour }}"
user: "{{ certbot_auto_renew_user }}"

View File

@ -1 +1,2 @@
certbot_package: letsencrypt
certbot_renew_command: "renew --no-self-upgrade"

View File

@ -1,2 +1,3 @@
---
certbot_package: certbot
certbot_renew_command: "renew --quiet --no-self-upgrade"