diff options
author | Michael DeHaan <michael@ansibleworks.com> | 2013-10-12 01:16:36 +0200 |
---|---|---|
committer | Michael DeHaan <michael@ansibleworks.com> | 2013-10-12 01:16:36 +0200 |
commit | add45d2ca92ea1da2dde767b5bfc239dafd54b18 (patch) | |
tree | bca14fff265b6bb0025bad1019988e33562cbd1f /test | |
parent | Tweak only_if deprecation detector. (diff) | |
download | ansible-add45d2ca92ea1da2dde767b5bfc239dafd54b18.tar.xz ansible-add45d2ca92ea1da2dde767b5bfc239dafd54b18.zip |
Fixup legacy var detector.
Diffstat (limited to 'test')
-rw-r--r-- | test/playbook1.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/playbook1.yml b/test/playbook1.yml index 6a75df52f8..d345d7428d 100644 --- a/test/playbook1.yml +++ b/test/playbook1.yml @@ -25,7 +25,7 @@ action: command true - name: test basic shell, plus two ways to dereference a variable - action: shell echo $HOME {{port}} + action: shell echo {{HOME}} {{port}} - name: test vars_files imports action: shell echo {{duck}} {{cow}} {{testing}} |