2020-01-22 23:09:13 +00:00
# "How do i fail a task in Ansible if the variable contains a boolean value?
# I want to perform input validation for Ansible playbooks"
# https://stackoverflow.com/questions/46664127/how-do-i-fail-a-task-in-ansible-if-the-variable-contains-a-boolean-value-i-want/46667499#46667499
2020-01-23 21:46:08 +00:00
# We assume 0-init/tasks/validate_vars.yml has DEFINITELY been run, so no need
2020-01-22 23:09:13 +00:00
# to re-check whether vars are defined here. As Ansible vars cannot be unset:
# https://serverfault.com/questions/856729/how-to-destroy-delete-unset-a-variable-value-in-ansible
- name : Assert that "captiveportal_install is sameas true" (boolean not string etc)
assert :
that : captiveportal_install is sameas true
2020-01-23 13:59:53 +00:00
fail_msg : "PLEASE SET 'captiveportal_install: True' e.g. IN: /etc/iiab/local_vars.yml"
2020-01-22 23:09:13 +00:00
quiet : yes
- name : Assert that "captiveportal_enabled | type_debug == 'bool'" (boolean not string etc)
assert :
that : captiveportal_enabled | type_debug == 'bool'
2020-01-28 12:35:33 +00:00
fail_msg : "PLEASE GIVE VARIABLE 'captiveportal_enabled' A PROPER (UNQUOTED) ANSIBLE BOOLEAN VALUE e.g. IN: /etc/iiab/local_vars.yml"
2020-01-22 23:09:13 +00:00
quiet : yes
2020-01-23 21:46:08 +00:00
2020-01-22 23:09:13 +00:00
2020-01-30 09:00:00 +00:00
- name : Install Captive Portal if 'captiveportal_installed' not defined, e.g. in {{ iiab_state_file }} # /etc/iiab/iiab_state.yml
2020-01-22 23:09:13 +00:00
include_tasks : install.yml
when : captiveportal_installed is undefined
2020-01-23 21:46:08 +00:00
2020-01-23 21:50:46 +00:00
- name : Enable or Disable Captive Portal
include_tasks : enable-or-disable.yml
2020-01-23 21:46:08 +00:00
2020-01-22 23:09:13 +00:00
- name : Add 'captiveportal' variable values to {{ iiab_ini_file }}
ini_file :
2020-01-27 07:34:28 +00:00
path : "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
2020-01-22 23:09:13 +00:00
section : captiveportal
option : "{{ item.option }}"
value : "{{ item.value | string }}"
2019-12-04 21:30:27 +00:00
with_items :
2020-01-22 23:09:13 +00:00
- option : name
value : Captive Portal
- option : description
value : '"Captive Portal tries to open the browser automatically, so users don' 't have to type in URL' 's like http://box.lan in support of kiosk-like situations, in multilingual and less literate communities."'
2020-01-30 09:57:53 +00:00
- option : install
2020-01-22 23:09:13 +00:00
value : "{{ captiveportal_install }}"
- option : enabled
value : "{{ captiveportal_enabled }}"