fix multiline commands
This commit is contained in:
parent
f05a874efb
commit
678f56b732
@ -2,7 +2,7 @@
|
|||||||
- name: Initialise certbot
|
- name: Initialise certbot
|
||||||
block:
|
block:
|
||||||
- name: Initial run of certbot
|
- name: Initial run of certbot
|
||||||
shell: |
|
shell: >
|
||||||
certbot
|
certbot
|
||||||
--config-dir {{ certbot_config_dir }}
|
--config-dir {{ certbot_config_dir }}
|
||||||
--work-dir {{ certbot_work_dir }}
|
--work-dir {{ certbot_work_dir }}
|
||||||
|
@ -34,11 +34,11 @@
|
|||||||
hour: 3
|
hour: 3
|
||||||
user: "{{ certbot_user }}"
|
user: "{{ certbot_user }}"
|
||||||
job: >
|
job: >
|
||||||
"certbot
|
certbot
|
||||||
--config-dir {{ certbot_config_dir }}
|
--config-dir {{ certbot_config_dir }}
|
||||||
--work-dir {{ certbot_work_dir }}
|
--work-dir {{ certbot_work_dir }}
|
||||||
--logs-dir {{ certbot_log_dir }}
|
--logs-dir {{ certbot_log_dir }}
|
||||||
{{ certbot_command_arguments | join(' ') }}"
|
{{ certbot_command_arguments | join(' ') }}
|
||||||
cron_file: "{{ certbot_cronfile | default(omit) }}"
|
cron_file: "{{ certbot_cronfile | default(omit) }}"
|
||||||
when: certbot_scheduler_enabled
|
when: certbot_scheduler_enabled
|
||||||
become: True
|
become: True
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
---
|
---
|
||||||
- include_tasks: install.yml
|
- include_tasks: install.yml
|
||||||
|
|
||||||
- include_tasks: plugins.yml
|
- include_tasks: plugins.yml
|
||||||
when: certbot_core_networks_plugin_enabled
|
when: certbot_core_networks_plugin_enabled
|
||||||
|
|
||||||
|
- include_tasks: init.yml
|
||||||
|
Loading…
Reference in New Issue
Block a user