diff options
author | Michael DeHaan <michael@ansibleworks.com> | 2013-05-05 13:39:03 -0400 |
---|---|---|
committer | Michael DeHaan <michael@ansibleworks.com> | 2013-05-05 13:39:03 -0400 |
commit | 8d0b8c70cef72351c87d762db6d209f96e547202 (patch) | |
tree | e1d3d1ebc68d968c101e72b925801e3a1ea54201 /examples | |
parent | f57e57ba54eaeaab1bbefc3dba4c4592c89ed86c (diff) | |
download | ansible-8d0b8c70cef72351c87d762db6d209f96e547202.tar.gz |
update with_items example
Diffstat (limited to 'examples')
-rw-r--r-- | examples/playbooks/loop_with_items.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/playbooks/loop_with_items.yml b/examples/playbooks/loop_with_items.yml index a7533d6adf..3b9efba489 100644 --- a/examples/playbooks/loop_with_items.yml +++ b/examples/playbooks/loop_with_items.yml @@ -8,20 +8,20 @@ tasks: - - name: install $item - action: yum pkg=$item state=installed + - name: install packages + action: yum name={{ item }} state=installed with_items: - cobbler - httpd - - name: configure user $item - action: user name=$item state=present groups=wheel + - name: configure users + action: user name={{ item }} state=present groups=wheel with_items: - testuser1 - testuser2 - - name: remove user $item - action: user name=$item state=absent + - name: remove users + action: user name={{ item }} state=absent with_items: - testuser1 - testuser2 |