mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 11:50: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
|
# This playbook installs httpd
|
||||||
|
|
||||||
- name: Install http and php etc
|
- name: Install http and php etc
|
||||||
action: yum name=$item state=installed
|
yum: name=$item state=installed
|
||||||
with_items:
|
with_items:
|
||||||
- httpd
|
- httpd
|
||||||
- libsemanage-python
|
- libsemanage-python
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# httpd is handled by the base-apache role upstream
|
# httpd is handled by the base-apache role upstream
|
||||||
- name: Install php and git
|
- name: Install php and git
|
||||||
action: yum name=$item state=installed
|
yum: name=$item state=installed
|
||||||
with_items:
|
with_items:
|
||||||
- php
|
- php
|
||||||
- php-mysql
|
- php-mysql
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
serial: 1
|
serial: 1
|
||||||
tasks:
|
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
|
nagios: action=disable_alerts host=$ansible_hostname services=webserver
|
||||||
delegate_to: $item
|
delegate_to: $item
|
||||||
with_items: ${groups.monitoring}
|
with_items: ${groups.monitoring}
|
||||||
|
|
Loading…
Reference in a new issue