mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 11:04:30 +00:00
14 lines
280 B
YAML
14 lines
280 B
YAML
- name: Install rsyslog
|
|
apt:
|
|
name: rsyslog
|
|
state: present
|
|
|
|
- name: Configure forwarding to central syslog
|
|
template:
|
|
src: 90-forward-all.conf.j2
|
|
dest: /etc/rsyslog.d/90-forward-all.conf
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
notify: restart rsyslog
|