Skip to content

Instantly share code, notes, and snippets.

@zbal
Created March 23, 2013 04:28
Show Gist options
  • Save zbal/5226450 to your computer and use it in GitHub Desktop.
Save zbal/5226450 to your computer and use it in GitHub Desktop.
netsted with_items
main playbook:
tasks:
- include: $item/tasks/main.yml
when_string: "'$item' in $group_names"
with_items:
- apache
- php
included file ex. apache/tasks/main.yml:
name: install packages
apt: pkg=$item state=present
with_items:
- apache2
- some other packages
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment