root 8736176b70 renommé : sio2/SISR/09-ansible/syslog-cli.yml -> sio2/SISR/09-ansible/rsyslog/syslog-cli.yml
renommé :         sio2/SISR/09-ansible/syslog.yml -> sio2/SISR/09-ansible/rsyslog/syslog.yml
	supprimé :        sio2/SISR/09-ansible/squid.conf.j2
	renommé :         sio2/SISR/09-ansible/squid.yml -> sio2/SISR/09-ansible/squid/squid.yml
	renommé :         sio2/SISR/09-ansible/index.html -> sio2/SISR/09-ansible/web/index.html
	renommé :         sio2/SISR/09-ansible/web.yml -> sio2/SISR/09-ansible/web/web.yml
2024-10-11 11:37:18 +02:00

29 lines
706 B
YAML

---
- hosts: adm
tasks:
- name: installation de rsyslog
apt:
name: rsyslog
state: present
- name: decommente le chargement du module imudp dans rsyslog.conf
replace:
path: /etc/rsyslog.conf
regexp: '^#module\(load="imudp"\)'
replace: 'module(load="imudp")'
notify: restart rsyslog
- name: decommenter toutes les lignes avec le port 514 udp
replace:
path: /etc/rsyslog.conf
regexp: '^#input\(type="imudp" port="514"\)'
replace: 'input(type="imudp" port="514")'
notify: restart rsyslog
handlers:
- name: restart rsyslog
service:
name: rsyslog.service
state: restarted