Commit 8d0b8c70 by Michael DeHaan

update with_items example

parent f57e57ba
...@@ -8,20 +8,20 @@ ...@@ -8,20 +8,20 @@
tasks: tasks:
- name: install $item - name: install packages
action: yum pkg=$item state=installed action: yum name={{ item }} state=installed
with_items: with_items:
- cobbler - cobbler
- httpd - httpd
- name: configure user $item - name: configure users
action: user name=$item state=present groups=wheel action: user name={{ item }} state=present groups=wheel
with_items: with_items:
- testuser1 - testuser1
- testuser2 - testuser2
- name: remove user $item - name: remove users
action: user name=$item state=absent action: user name={{ item }} state=absent
with_items: with_items:
- testuser1 - testuser1
- testuser2 - testuser2
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment