mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 03:32:12 +00:00
'when: var | bool' per Ansible rec off of #1632 (for bare vars)
This commit is contained in:
parent
85e60bae0d
commit
c83414feac
1 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,7 @@
|
|||
- name: HTTPD (APACHE)
|
||||
include_role:
|
||||
name: httpd
|
||||
when: apache_install
|
||||
when: apache_install | bool
|
||||
tags: base, httpd
|
||||
|
||||
- name: MYSQL
|
||||
|
@ -17,11 +17,11 @@
|
|||
|
||||
- name: Install nginx
|
||||
include_tasks: roles/nginx/tasks/install.yml
|
||||
when: nginx_install
|
||||
when: nginx_install | bool
|
||||
|
||||
- name: Install dnsmasq
|
||||
include_tasks: roles/network/tasks/dnsmasq.yml
|
||||
when: dnsmasq_install
|
||||
when: dnsmasq_install | bool
|
||||
tags: base, domain, dnsmasq, network
|
||||
|
||||
- name: Recording STAGE 3 HAS COMPLETED =====================
|
||||
|
|
Loading…
Reference in a new issue