mirror of
https://github.com/inofix/common-playbooks.git
synced 2026-02-05 12:45:29 +01:00
16 lines
483 B
YAML
16 lines
483 B
YAML
#* This is a testing module only. Just provide the variable
|
|
#* you want to check as 'msg' and then ansible will tell you
|
|
#* what value it sees for that variable.
|
|
#* The following arguments are mandatory:
|
|
#* - 'msg'
|
|
#* Maestro Example:
|
|
# * Test the reclass-variable 'service__backup__user'
|
|
#* `$ maestro.sh -f -H bup00 play debug "msg={{ service__backup__user }}"`
|
|
- hosts: all
|
|
vars:
|
|
msg: "foobar"
|
|
tasks:
|
|
- name: debugging
|
|
debug:
|
|
msg: "{{ msg }}"
|