mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 03:40:18 +01:00
minor stylistic fixups
This commit is contained in:
parent
9a324a645c
commit
34fb541bb5
3 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue