mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Remove "| bool" 1.5yrs later, as Ansible 2.10 changed conditional_bare_variables default
This commit is contained in:
parent
2968a8a20e
commit
ca171fbc1c
158 changed files with 2072 additions and 2072 deletions
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
- name: dnsmasq (install now, configure LATER in 'network', after Stage 9)
|
||||
include_tasks: roles/network/tasks/dnsmasq.yml
|
||||
#when: dnsmasq_install | bool # Flag might be used in future?
|
||||
#when: dnsmasq_install # Flag might be used in future?
|
||||
|
||||
- name: Install uuid-runtime package (debuntu)
|
||||
package:
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
- uuid-runtime
|
||||
- sudo
|
||||
state: present
|
||||
when: is_debuntu | bool
|
||||
when: is_debuntu
|
||||
|
||||
- name: Does /etc/iiab/uuid file exist?
|
||||
stat:
|
||||
|
|
@ -79,17 +79,17 @@
|
|||
- name: SSHD
|
||||
include_role:
|
||||
name: sshd
|
||||
when: sshd_install | bool
|
||||
when: sshd_install
|
||||
|
||||
- name: IIAB-ADMIN
|
||||
include_role:
|
||||
name: iiab-admin
|
||||
#when: iiab_admin_install | bool # Flag might be created in future?
|
||||
#when: iiab_admin_install # Flag might be created in future?
|
||||
|
||||
- name: OPENVPN
|
||||
include_role:
|
||||
name: openvpn
|
||||
when: openvpn_install | bool
|
||||
when: openvpn_install
|
||||
|
||||
# Debian 10 "Buster" is apparently enabling AppArmor in 2019:
|
||||
# https://wiki.debian.org/AppArmor/Progress
|
||||
|
|
@ -102,7 +102,7 @@
|
|||
name: apparmor
|
||||
enabled: False
|
||||
state: stopped
|
||||
when: is_ubuntu | bool
|
||||
when: is_ubuntu
|
||||
ignore_errors: True
|
||||
|
||||
- name: Disable SELinux on next boot (OS's other than debuntu)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue