siotp/sio2/SISR/09-ansible/syslog-cli.yml
root e09e6c1fc1 nouveau fichier : sio2/SISR/09-ansible/hosts
nouveau fichier : sio2/SISR/09-ansible/index.html
	nouveau fichier : sio2/SISR/09-ansible/squid.conf.j2
	nouveau fichier : sio2/SISR/09-ansible/squid.yml
	nouveau fichier : sio2/SISR/09-ansible/syslog-cli.yml
	nouveau fichier : sio2/SISR/09-ansible/syslog.yml
	nouveau fichier : sio2/SISR/09-ansible/web.yml
2024-10-11 11:29:28 +02:00

33 lines
720 B
YAML

---
- hosts: web
tasks:
- name: installation de rsyslog
apt:
name: rsyslog
state: present
- name: decommenter la ligne ForwardToSyslog=yes
replace:
path: /etc/systemd/journald.conf
regexp: '^#ForwardToSyslog=yes'
replace: 'ForwardToSyslog=yes'
notify: restart journald
- name: serveur distant est present
lineinfile:
path: /etc/rsyslog.conf
line: '*.*@192.168.0.21:514'
create: yes
notify: restart rsyslog
handlers:
- name: restart journald
service:
name: systemd.journald
state: restarted
- name: restart rsyslog
service:
name: rsyslog
state: restarted