summaryrefslogtreecommitdiff
blob: ade4feadb6aff1bb75333ba6c0ad88ecc8a0e3e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- name: reload sshd
  service:
    name: sshd
    state: reloaded

- name: reload grub
  command: update-grub

- name: double disable systemd ntp client
  command: timedatectl set-ntp false

- name: clear motd cache
  file:
    path: "{{ item }}"
    state: absent
  loop:
    - /var/cache/motd-news
    - /run/motd.dynamic
    - /run/motd.dynamic.new
Powered by cgit v1.2.3 (git 2.41.0)