mirror of
https://github.com/nikdoof/ansible-cis.git
synced 2025-12-22 14:29:24 +00:00
18 lines
359 B
YAML
18 lines
359 B
YAML
---
|
|
- name: restart sshd
|
|
ansible.builtin.service:
|
|
name: sshd
|
|
state: restarted
|
|
- name: remount proc
|
|
ansible.posix.mount:
|
|
path: /proc
|
|
state: remounted
|
|
- name: restart journald
|
|
ansible.builtin.service:
|
|
name: systemd-journald
|
|
state: restarted
|
|
- name: restart rsyslog
|
|
ansible.builtin.service:
|
|
name: rsyslog
|
|
state: restarted
|