xoxys.certbot/tasks/init.yml

17 lines
472 B
YAML
Raw Normal View History

2018-06-25 21:02:24 +00:00
---
- name: Initialise certbot
block:
- name: Initial run of certbot
2018-06-26 19:11:52 +00:00
shell: >
2018-06-25 21:02:24 +00:00
certbot
--config-dir {{ certbot_config_dir }}
--work-dir {{ certbot_work_dir }}
--logs-dir {{ certbot_log_dir }}
{{ certbot_command_arguments | join(' ') }}
2018-06-26 20:03:58 +00:00
register: certbot_init
changed_when: certbot_init.rc == 130
2018-06-26 20:08:37 +00:00
ignore_errors: True
2018-06-25 21:02:24 +00:00
become: True
become_user: "{{ certbot_user }}"
when: certbot_initial_run_enabled