diff options
Diffstat (limited to 'ansible/roles/common/handlers')
-rw-r--r-- | ansible/roles/common/handlers/main.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ansible/roles/common/handlers/main.yml b/ansible/roles/common/handlers/main.yml new file mode 100644 index 0000000..ade4fea --- /dev/null +++ b/ansible/roles/common/handlers/main.yml | |||
@@ -0,0 +1,20 @@ | |||
1 | --- | ||
2 | - name: reload sshd | ||
3 | service: | ||
4 | name: sshd | ||
5 | state: reloaded | ||
6 | |||
7 | - name: reload grub | ||
8 | command: update-grub | ||
9 | |||
10 | - name: double disable systemd ntp client | ||
11 | command: timedatectl set-ntp false | ||
12 | |||
13 | - name: clear motd cache | ||
14 | file: | ||
15 | path: "{{ item }}" | ||
16 | state: absent | ||
17 | loop: | ||
18 | - /var/cache/motd-news | ||
19 | - /run/motd.dynamic | ||
20 | - /run/motd.dynamic.new | ||