Fix bool check assert

This commit is contained in:
ant31 2017-10-06 17:02:38 +00:00
parent d13b07ba59
commit 1be4c1935a

View file

@ -30,7 +30,8 @@
- name: "Stop if known booleans are set as strings (Use JSON format on CLI: -e \"{'key': true }\")"
assert:
that: item|type_debug == 'bool'
that: hostvars[inventory_hostname][item]|type_debug == 'bool'
msg: "{{hostvars[inventory_hostname][item]}} isn't a bool"
run_once: yes
with_items:
- kubeadm_enabled