diff options
author | Michael DeHaan <michael@ansibleworks.com> | 2013-05-05 19:36:56 +0200 |
---|---|---|
committer | Michael DeHaan <michael@ansibleworks.com> | 2013-05-05 19:36:56 +0200 |
commit | bacb6644db732161e1629223d4a3eb494203ef54 (patch) | |
tree | cd45af97cf9e081898615c7fb79ef77dd3119170 /examples | |
parent | Update get_url example (diff) | |
download | ansible-bacb6644db732161e1629223d4a3eb494203ef54.tar.xz ansible-bacb6644db732161e1629223d4a3eb494203ef54.zip |
update group_by example
Diffstat (limited to 'examples')
-rw-r--r-- | examples/playbooks/group_by.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/playbooks/group_by.yml b/examples/playbooks/group_by.yml index bc8548f2fc..f682f7c4e2 100644 --- a/examples/playbooks/group_by.yml +++ b/examples/playbooks/group_by.yml @@ -13,7 +13,7 @@ tasks: - name: Create a group of all hosts by operating system - action: group_by key=${ansible_distribution}-${ansible_distribution_version} + action: group_by key={{ansible_distribution}}-{{ansible_distribution_version}} # the following host group does not exist in inventory and was created by the group_by # module. |