xoxys.certbot/tasks/setup.yml

18 lines
529 B
YAML
Raw Normal View History

2018-06-25 23:02:24 +02:00
---
- name: Initialise certbot
block:
- name: Initial run of certbot
2019-10-16 00:20:29 +02:00
command: >
2020-04-21 00:10:25 +02:00
{{ certbot_bin | default(__certbot_bin) }}
2018-06-25 23:02:24 +02:00
--config-dir {{ certbot_config_dir }}
--work-dir {{ certbot_work_dir }}
--logs-dir {{ certbot_log_dir }}
2020-04-19 23:27:41 +02:00
--agree-tos
2018-06-25 23:02:24 +02:00
{{ certbot_command_arguments | join(' ') }}
2018-06-26 22:03:58 +02:00
register: certbot_init
changed_when: certbot_init.rc == 130
2018-06-26 22:08:37 +02:00
ignore_errors: True
2018-06-25 23:02:24 +02:00
become: True
become_user: "{{ certbot_user }}"
when: certbot_initial_run_enabled