mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-09 22:08:33 +01:00
20 lines
327 B
YAML
20 lines
327 B
YAML
- name: Install Dependecies
|
|
apt:
|
|
pkg:
|
|
- rsyslog
|
|
state: present
|
|
|
|
- name: Rsyslog Main config
|
|
template:
|
|
src: rsyslog.conf.j2
|
|
dest: /etc/rsyslog.conf
|
|
mode: 0755
|
|
notify:
|
|
- restart rsyslog
|
|
|
|
- name: Enable and start rsyslog
|
|
systemd:
|
|
name: rsyslog.service
|
|
state: started
|
|
enabled: yes
|