summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalph Bean <rbean@redhat.com>2013-07-12 20:29:13 +0000
committerRalph Bean <rbean@redhat.com>2013-07-12 20:29:13 +0000
commit412e61aad5c880e573e30bd6bc98fcbbaea6500c (patch)
tree944614ab19358649f02a2e187b2569212a3b7ea6
parentf982d667141323d85a9e1256703360651e5a018f (diff)
downloadansible-412e61aad5c880e573e30bd6bc98fcbbaea6500c.tar.gz
ansible-412e61aad5c880e573e30bd6bc98fcbbaea6500c.tar.xz
ansible-412e61aad5c880e573e30bd6bc98fcbbaea6500c.zip
More syntax fixing.
-rw-r--r--playbooks/groups/badges-web.yml18
1 files changed, 10 insertions, 8 deletions
diff --git a/playbooks/groups/badges-web.yml b/playbooks/groups/badges-web.yml
index 6706f41c6..bc38336d8 100644
--- a/playbooks/groups/badges-web.yml
+++ b/playbooks/groups/badges-web.yml
@@ -4,10 +4,11 @@
# NOTE: most of these vars come from group_vars/badges-web* or from hostvars
- name: emit a fedmsg message that we are done
- local_action: fedmsg
- cert_prefix="shell"
- topic="playbook.start"
- msg="just a test that we are starting"
+ tasks:
+ - local_action: fedmsg
+ cert_prefix="shell"
+ topic="playbook.start"
+ msg="just a test that we are starting"
- name: make badges-web server
hosts: badges-web;badges-web-stg
@@ -57,7 +58,8 @@
- include: $handlers/restart_services.yml
- name: emit a fedmsg message that we are done
- local_action: fedmsg
- cert_prefix="shell"
- topic="playbook.complete"
- msg="just a test that we have completed"
+ tasks:
+ - local_action: fedmsg
+ cert_prefix="shell"
+ topic="playbook.complete"
+ msg="just a test that we are completing"