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

Put tags alsways in quotes

parent 749a8bd2
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
- include_tasks: install.yml - include_tasks: install.yml
tags: 'always' tags: 'always'
- include_tasks: configure.yml - include_tasks: configure.yml
tags: Config tags: 'Config'
when: '"haproxy" not in excluded_roles' when: '"haproxy" not in excluded_roles'
...@@ -37,17 +37,17 @@ ...@@ -37,17 +37,17 @@
path: '/etc/letsencrypt' path: '/etc/letsencrypt'
owner: '{{ ansible_env.SUDO_USER }}' owner: '{{ ansible_env.SUDO_USER }}'
recurse: yes recurse: yes
tags: Certs tags: 'Certs'
when: proxy_active when: proxy_active
tags: Certs tags: 'Certs'
when: 'proxy_active and "letsencrypt" not in excluded_roles' when: 'proxy_active and "letsencrypt" not in excluded_roles'
- block: - block:
- name: "Pull Certs from active Proxy" - name: "Pull Certs from active Proxy"
include_tasks: 'pullcerts.yml' include_tasks: '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'
...@@ -56,5 +56,5 @@ ...@@ -56,5 +56,5 @@
path: '/etc/letsencrypt' path: '/etc/letsencrypt'
owner: 'root' owner: 'root'
recurse: yes recurse: yes
tags: Certs tags: 'Certs'
when: 'proxy_active and "letsencrypt" not in excluded_roles' when: '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