*.yml: Add some header comments.
[distorted-ansible] / roles / common / handlers / main.yml
1 ### -*-yaml-*-
2 ###
3 ### Handlers, mostly for kicking services.
4
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
16 ###----- That's all, folks --------------------------------------------------