mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
366 B
YAML
15 lines
366 B
YAML
6 years ago
|
- hosts: testhost
|
||
|
gather_facts: false
|
||
|
vars:
|
||
|
str_boolean_var: 'false'
|
||
|
tasks:
|
||
|
- name: Run tasks with warnings for conditionals that will change in behavior depending on CONDITIONAL_BARE_VARS
|
||
|
block:
|
||
|
- debug:
|
||
|
when: str_boolean_var
|
||
|
- debug:
|
||
|
when: double_interpolated
|
||
|
vars:
|
||
|
double_interpolated: other
|
||
|
other: false
|