27 lines
596 B
YAML
27 lines
596 B
YAML
|
- name: restart systemd-timesyncd
|
||
|
systemd:
|
||
|
name: systemd-timesyncd
|
||
|
state: restarted
|
||
|
- name: restart-ssh
|
||
|
systemd:
|
||
|
name: ssh
|
||
|
state: restarted
|
||
|
- name: restart fail2ban
|
||
|
systemd:
|
||
|
name: fail2ban
|
||
|
state: restarted
|
||
|
- name: restart-nrpe
|
||
|
systemd:
|
||
|
name: nagios-nrpe-server
|
||
|
state: restarted
|
||
|
- name: restart sshd
|
||
|
systemd:
|
||
|
name: sshd
|
||
|
state: restarted
|
||
|
- name: generate locales
|
||
|
command: /usr/sbin/locale-gen
|
||
|
- name: reconfigure tzdata
|
||
|
command: dpkg-reconfigure -f noninteractive tzdata
|
||
|
- name: update exim configuration
|
||
|
command: /usr/sbin/update-exim4.conf
|