Separate handlers into its own file.

This commit is contained in:
staticsafe 2014-05-07 14:32:38 +00:00
parent 3dae812515
commit 2c0a9857bc
2 changed files with 31 additions and 31 deletions

6
debian/roles/common/handlers/main.yml vendored Normal file
View File

@ -0,0 +1,6 @@
---
- name: restart rsyslog
service: name=rsyslog state=restarted
- name: restart cron
service: name=cron state=restarted

View File

@ -1,7 +1,6 @@
---
- user: root
hosts: unsetup
tasks:
# This playbook contains common plays that will be run all nodes.
- name: Install python-apt, aptitude, and debconf-utils
shell: apt-get update && apt-get -y install python-apt aptitude debconf-utils
- name: Do any package upgrades
@ -25,8 +24,3 @@
service: name=unbound enabled=yes
- name: use local unbound instance for DNS
shell: echo "nameserver ::1" > /etc/resolv.conf
handlers:
- name: restart rsyslog
service: name=rsyslog state=restarted
- name: restart cron
service: name=cron state=restarted