roles/common/handlers/main.yml: Move `make' handlers to the top.
[distorted-ansible] / roles / common / handlers / main.yml
CommitLineData
f60b613f
MW
1### -*-yaml-*-
2###
3### Handlers, mostly for kicking services.
4
3f6c5992
MW
5---
6
7###--------------------------------------------------------------------------
d0e668e0
MW
8### Rebuliding remote configuration files.
9
10- name: make in /root/.ssh/
11 command: make chdir=/root/.ssh/
12
13###--------------------------------------------------------------------------
3f6c5992
MW
14### Restarting services in obvious ways.
15
16- name: restart ntpd
17 service: name=ntp state=restarted
18
19- name: restart ssh
20 service: name=ssh state=restarted
21
22###----- That's all, folks --------------------------------------------------