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 @@
- domains
loop_control:
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:
- ApacheConfig
......@@ -29,7 +29,7 @@
with_items: '{{ drupal_settings|default([]) }}'
loop_control:
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:
- ApacheConfig
- cron
......@@ -46,7 +46,7 @@
with_items: '{{ drupal_settings|default([]) }}'
loop_control:
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:
- deploy
......@@ -67,7 +67,7 @@
with_items: '{{ drupal_settings|default([]) }}'
loop_control:
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
tags:
......
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