1
0
mirror of https://github.com/inofix/common-playbooks.git synced 2026-02-05 12:45:29 +01:00
Files
common-playbooks/debug.yml
Michael Lustenberger 7c18bf9f62 Rename Module
Do not use abbreviations..
2018-09-30 22:14:15 +02:00

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 }}"