fix quotes

This commit is contained in:
Robert Kaussow 2018-06-23 15:34:40 +02:00
parent 7eff632533
commit 8e2700cf92
2 changed files with 5 additions and 1 deletions

View File

@ -24,3 +24,7 @@ certbot_command_arguments:
- "--manual-public-ip-logging-ok"
- "-n"
- "-d {{ certbot_domains | join(',') }}"
# Use a file under /etc/cron.d
# Works onyl if certbot_user is root
# certbot_cronfile: certbot-letsencrypt

View File

@ -33,7 +33,7 @@
minute: 55
hour: 3
user: "{{ certbot_user }}"
job: "certbot {{ certbot_command_arguments | join(" ") }}"
job: "certbot {{ certbot_command_arguments | join(' ') }}"
cron_file: "{{ certbot_cronfile | default(omit) }}"
become: True
become_user: "{{ certbot_user }}"