blob: f229852c0fb88a2f3c2db1346eb9bedbf05c9877 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
---
- name: restart_notification
ansible.builtin.debug:
msg: "Restart your box for sysctl.conf and syslog.conf to take effect"
- name: syslogd_restart
ansible.builtin.service:
name: syslogd
state: restarted
enabled: true
|