tp ansible

This commit is contained in:
Elam MONNOT 2022-10-13 09:05:35 +02:00
parent 62df029ff7
commit 92d62b1cb7
8 changed files with 8691 additions and 0 deletions

View File

@ -0,0 +1,6 @@
[adm]
infra
[web]
web1
web2

View File

@ -0,0 +1,7 @@
[adm]
infra
[web]
web1
web2

View File

@ -0,0 +1 @@
<title>Bonjour</title>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,32 @@
---
- hosts: adm
vars:
- proxy_port: 8080
- proxy_mem: 256
- proxy_localnet: 192.168.0.0/24
tasks:
- name: Installation de proxy squid...
apt:
name: squid
state: present
- name: generation du fichier de configuration de squid...
template:
src: squid.conf.j2
dest: /etc/squid/squid.conf
mode: 0644
backup: true
notify: restart squid
handlers:
- name: restart squid
service:
name: squid
state: restarted
# - name: Copie de squid.conf...
# fetch:
# src: /etc/squid/squid.conf
# dest: ./squid.conf.j2
# flat: yes

View File

@ -0,0 +1,30 @@
---
- hosts: web
name: syslog-client-configure
tasks:
- name: editing journald.conf...
ansible.builtin.replace:
path: /etc/systemd/journald.conf
regexp: '^#ForwardToSyslog=yes'
replace: 'ForwardToSyslog=yes'
backup: yes
notify: restart journald
- name: editing rsyslog.conf...
ansible.builtin.lineinfile:
path: /etc/rsyslog.conf
line: '*.* @192.168.0.48:514'
create: yes
notify: restart rsyslog
handlers:
- name: restart journald
service:
name: systemd-journald
state: restarted
- name: restart rsyslog
service:
name: rsyslog
state: restarted

View File

@ -0,0 +1,23 @@
---
- hosts: adm
name: rsyslog-server-configure
tasks:
- name: activation du module imudp...
ansible.builtin.replace:
path: /etc/rsyslog.conf
regexp: '^#module\(load="imudp"\)'
replace: 'module(load="imudp")'
- name: ouverture du port 514...
ansible.builtin.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
state: restarted

View File

@ -0,0 +1,24 @@
---
- hosts: web
name: web
tasks:
- name: verifying apache installation
apt :
name: apache2
state: present
- name: verifying php installation
apt :
name: php
state: present
- name: verifying php-mbstring installation
apt :
name: php-mbstring
state: present
- name: overwriting index.html...
copy:
src: index.html
dest: /var/www/html/index.html