diff options
author | Ralph Bean <rbean@redhat.com> | 2013-07-12 20:30:16 +0000 |
---|---|---|
committer | Ralph Bean <rbean@redhat.com> | 2013-07-12 20:30:20 +0000 |
commit | fb463d21d045e6db96ffd5770bd99a1fff95bd73 (patch) | |
tree | 425418bf9162da9d50008352a30d5848f90a29dc | |
parent | 412e61aad5c880e573e30bd6bc98fcbbaea6500c (diff) | |
download | ansible-fb463d21d045e6db96ffd5770bd99a1fff95bd73.tar.gz ansible-fb463d21d045e6db96ffd5770bd99a1fff95bd73.tar.xz ansible-fb463d21d045e6db96ffd5770bd99a1fff95bd73.zip |
Apparently, hosts declaration is required.
-rw-r--r-- | playbooks/groups/badges-web.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/playbooks/groups/badges-web.yml b/playbooks/groups/badges-web.yml index bc38336d8..b490435fa 100644 --- a/playbooks/groups/badges-web.yml +++ b/playbooks/groups/badges-web.yml @@ -4,6 +4,9 @@ # NOTE: most of these vars come from group_vars/badges-web* or from hostvars - name: emit a fedmsg message that we are done + hosts: badges-web;badges-web-stg + user: root + gather_facts: False tasks: - local_action: fedmsg cert_prefix="shell" @@ -58,6 +61,9 @@ - include: $handlers/restart_services.yml - name: emit a fedmsg message that we are done + hosts: badges-web;badges-web-stg + user: root + gather_facts: False tasks: - local_action: fedmsg cert_prefix="shell" |