Brian Coca
unread,Dec 3, 2014, 7:51:21 AM12/3/14Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ansible...@googlegroups.com
a play is a host to task mapping, roles are a group of tasks, as long
as they are in the same hosts mapping they are in the same play:
- hosts: all
roles:
- role1
- role2
you can have additional plays in the same file or execute several
files in the same invocation, both of these are named playbooks
(contains plays, at least 1).
--
Brian Coca