roles/common/*.yml: More trailing `/'s on directory names.
[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###--------------------------------------------------------------------------
8### Restarting services in obvious ways.
9
10- name: restart ntpd
11 service: name=ntp state=restarted
12
13- name: restart ssh
14 service: name=ssh state=restarted
15
51370852
MW
16###--------------------------------------------------------------------------
17### Rebuliding remote configuration files.
18
90f05477
MW
19- name: make in /root/.ssh/
20 command: make chdir=/root/.ssh/
51370852 21
3f6c5992 22###----- That's all, folks --------------------------------------------------