mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-10 10:08:32 +01:00
29 lines
497 B
YAML
29 lines
497 B
YAML
- name: Install Dependecies
|
|
apt:
|
|
pkg:
|
|
- rsyslog
|
|
- rsyslog-psql
|
|
state: present
|
|
|
|
- name: Rsyslog Main config
|
|
template:
|
|
src: rsyslog.conf.j2
|
|
dest: /etc/rsyslog.conf
|
|
mode: 0755
|
|
notify:
|
|
- restart rsyslog
|
|
|
|
- name: Rsyslog Database config
|
|
template:
|
|
src: psql.conf.j2
|
|
dest: /etc/rsyslog.d/psql.conf
|
|
mode: 0755
|
|
notify:
|
|
- restart rsyslog
|
|
|
|
- name: Enable and start nsca-ng
|
|
systemd:
|
|
name: rsyslog.service
|
|
state: started
|
|
enabled: yes
|