1da47bfa8c
Avoid premature vars templating * added tests * avoid 'is template' warning in vars, since we want them for latter templating
12 lines
389 B
Bash
Executable file
12 lines
389 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
# this should succeed since we override the undefined variable
|
|
ansible-playbook undefined.yml -i inventory -v "$@" -e '{"mytest": False}'
|
|
|
|
# this should still work, just show that var is undefined in debug
|
|
ansible-playbook undefined.yml -i inventory -v "$@"
|
|
|
|
# this should work since we dont use the variable
|
|
ansible-playbook undall.yml -i inventory -v "$@"
|