diff options
author | clarkzjw <[email protected]> | 2023-02-08 00:40:09 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-02-08 00:40:09 -0800 |
commit | 1204730924436ef9e1c7c49c9557837f9a5ed0e8 (patch) | |
tree | 129d79dfd11245751cee6d4082ff5d2f6e941610 /ansible/roles/common/handlers/main.yml | |
parent | 9635ac4dedf69de5bff65785bcc16bef80b52d75 (diff) | |
download | mail-master.tar.gz |
Diffstat (limited to 'ansible/roles/common/handlers/main.yml')
-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 | ||