mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-08 02:16:04 +00:00
17 lines
528 B
YAML
17 lines
528 B
YAML
- name: Include dependency 'sys-ctl-mtn-cert-renew'
|
|
include_role:
|
|
name: sys-ctl-mtn-cert-renew
|
|
when: run_once_sys_ctl_mtn_cert_renew is not defined
|
|
|
|
- name: "Reinitialize OpenResty Handler"
|
|
include_tasks: utils/load_handlers.yml
|
|
vars:
|
|
handler_role_name: "svc-prx-openresty"
|
|
|
|
- name: create nginx letsencrypt config file
|
|
template:
|
|
src: "letsencrypt.conf.j2"
|
|
dest: "{{ [ NGINX.DIRECTORIES.HTTP.GLOBAL, 'letsencrypt.conf' ] | path_join }}"
|
|
notify: restart openresty
|
|
|
|
- include_tasks: utils/once/flag.yml |