minor stylistic fixups

This commit is contained in:
Tim Gerla 2013-04-16 19:41:43 -07:00
parent 9a324a645c
commit 34fb541bb5
3 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
# This playbook installs httpd
- name: Install http and php etc
action: yum name=$item state=installed
yum: name=$item state=installed
with_items:
- httpd
- libsemanage-python

View file

@ -2,7 +2,7 @@
# httpd is handled by the base-apache role upstream
- name: Install php and git
action: yum name=$item state=installed
yum: name=$item state=installed
with_items:
- php
- php-mysql

View file

@ -9,7 +9,7 @@
serial: 1
tasks:
- name: disable nagios alerts for this host's webserver service
- name: disable nagios alerts for this host webserver service
nagios: action=disable_alerts host=$ansible_hostname services=webserver
delegate_to: $item
with_items: ${groups.monitoring}