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

ansible-playbooks/general#85 Fix some complex when statements

parent 99ec56a6
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@
tags:
- ApacheConfig
when: not excluded_roles or "letsencrypt" not in excluded_roles and groups.proxyserver is not defined
when: (not excluded_roles or "letsencrypt" not in excluded_roles) and groups.proxyserver is not defined
- block:
......@@ -37,7 +37,7 @@
- SetPermissions
- mysql
when: not excluded_roles or "drupal" not in excluded_roles and drupal_install_drupal and (collect_config is not defined or not collect_config)
when: (not excluded_roles or "drupal" not in excluded_roles) and drupal_install_drupal and (collect_config is not defined or not collect_config)
- block:
......@@ -50,7 +50,7 @@
tags:
- deploy
when: not excluded_roles or "drupal" not in excluded_roles and drupal_install_drupal and collect_config is defined and collect_config
when: (not excluded_roles or "drupal" not in excluded_roles) and drupal_install_drupal and collect_config is defined and collect_config
- block:
......@@ -69,6 +69,6 @@
loop_var: drupal
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:
- collect_db_dump
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