Skip to content
Snippets Groups Projects
Commit d1547927 authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-playbooks/general#72 Go back to includes for main.yml files

parent 4a2a87db
No related branches found
No related tags found
No related merge requests found
...@@ -7,9 +7,8 @@ ...@@ -7,9 +7,8 @@
- block: - block:
- include_tasks: install.yml - include: install.yml
tags: 'always' - include: configure.yml
- include_tasks: configure.yml
tags: 'Config' tags: 'Config'
when: '"haproxy" not in excluded_roles' when: '"haproxy" not in excluded_roles'
...@@ -17,20 +16,17 @@ ...@@ -17,20 +16,17 @@
- block: - block:
- name: "Install Certs" - name: "Install Certs"
include_tasks: '../../letsencrypt/tasks/cert.yml' include: '../../letsencrypt/tasks/cert.yml'
with_items: '{{ proxy_certificates|default([]) }}' with_items: '{{ proxy_certificates|default([]) }}'
loop_control: loop_control:
loop_var: domain loop_var: domain
when: domain.letsencrypt|default(false) and domain.active|default(true) when: domain.letsencrypt|default(false) and domain.active|default(true)
tags: 'always'
- name: "Renew Existing Cert" - name: "Renew Existing Cert"
include_tasks: '../../letsencrypt/tasks/renew.yml' include: '../../letsencrypt/tasks/renew.yml'
tags: 'always'
- name: "Build HaCerts" - name: "Build HaCerts"
include_tasks: 'buildcerts.yml' include: 'buildcerts.yml'
tags: 'always'
- name: "Set directory permissions to current user" - name: "Set directory permissions to current user"
file: file:
...@@ -46,7 +42,7 @@ ...@@ -46,7 +42,7 @@
- block: - block:
- name: "Pull Certs from active Proxy" - name: "Pull Certs from active Proxy"
include_tasks: 'pullcerts.yml' include: 'pullcerts.yml'
tags: 'Certs' tags: 'Certs'
when: 'not proxy_active and "letsencrypt" not in excluded_roles' when: 'not proxy_active and "letsencrypt" not in excluded_roles'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment