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

ansible-playbooks/general#85 Change remaining false to no

parent 77148c6d
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
- domains - domains
loop_control: loop_control:
loop_var: domain loop_var: domain
when: domain.1.protocol|default("https") == "https" and domain.1.letsencrypt|default(true) and (limit_site is not defined or limit_site == 'False' or domain.0.id is not defined or limit_site == domain.0.id) when: domain.1.protocol|default("https") == "https" and domain.1.letsencrypt|default(true) and (limit_site is not defined or limit_site == 'no' or domain.0.id is not defined or limit_site == domain.0.id)
tags: tags:
- ApacheConfig - ApacheConfig
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
with_items: '{{ drupal_settings|default([]) }}' with_items: '{{ drupal_settings|default([]) }}'
loop_control: loop_control:
loop_var: drupal loop_var: drupal
when: limit_site is not defined or limit_site == 'False' or drupal.id is not defined or limit_site == drupal.id when: limit_site is not defined or limit_site == 'no' or drupal.id is not defined or limit_site == drupal.id
tags: tags:
- ApacheConfig - ApacheConfig
- cron - cron
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
with_items: '{{ drupal_settings|default([]) }}' with_items: '{{ drupal_settings|default([]) }}'
loop_control: loop_control:
loop_var: drupal loop_var: drupal
when: limit_site is not defined or limit_site == 'False' or drupal.id is not defined or limit_site == drupal.id when: limit_site is not defined or limit_site == 'no' or drupal.id is not defined or limit_site == drupal.id
tags: tags:
- deploy - deploy
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
with_items: '{{ drupal_settings|default([]) }}' with_items: '{{ drupal_settings|default([]) }}'
loop_control: loop_control:
loop_var: drupal loop_var: drupal
when: limit_site is not defined or limit_site == 'False' or drupal.id is not defined or limit_site == drupal.id when: limit_site is not defined or limit_site == 'no' or drupal.id is not defined or limit_site == drupal.id
when: not excluded_roles or "drupal" not in excluded_roles and drupal_install_drupal and collect_db_dump is defined and collect_db_dump when: not excluded_roles or "drupal" not in excluded_roles and drupal_install_drupal and collect_db_dump is defined and collect_db_dump
tags: tags:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment