Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible-examples.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonid Evdokimov <leon@darkk.net.ru>2014-06-18 19:21:26 +0400
committerLeonid Evdokimov <leon@darkk.net.ru>2014-06-18 19:21:26 +0400
commit43518a93f5a0aae3f9ca876b81ff3a08f4fbd910 (patch)
tree70181bef5ab37fb506718e301b7482d851955a65 /language_features
parente893d916ab79548dd9749b0c1ac7d9c2fb9e8b77 (diff)
complex_args: update example for ansbile-1.7
$ is obsolete and fails to work with ansible-playbook 1.7 (devel 6bc056e012)
Diffstat (limited to 'language_features')
-rw-r--r--language_features/complex_args.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/language_features/complex_args.yml b/language_features/complex_args.yml
index 03742d0..3fdc954 100644
--- a/language_features/complex_args.yml
+++ b/language_features/complex_args.yml
@@ -40,11 +40,8 @@
- name: can we make that cleaner? sure!
action: ping
- args: { data: $complex }
+ args: { data: "{{ complex }}" }
- name: here is an example of how it works with defaults, notice the key=value format wins
action: service name=httpd state=running
- args: $defaults
-
-
-
+ args: defaults