maj projet AP4

This commit is contained in:
Alhassane Kone
2023-12-15 08:28:03 +01:00
parent db7640bd5c
commit 759f7a3d03
7 changed files with 3 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
---
- name: restart apache2
service:
name: apache2
state: restarted

View File

@@ -0,0 +1,30 @@
---
- name: 1. Installer apache php
apt:
name:
- apache2
- php
- curl
state: present
#notify: 2. redémarrer apache et activer adminer
- name: 2. Installation des extensions php de GLPI
apt:
name:
- php-xml
- php-common
- php-json
- php-mysql
- php-mbstring
- php-curl
- php-gd
- php-intl
- php-imap
- php-apcu
- php-zip
- php-xmlrpc
- php-bz2
- php-ldap
state: present
notify:
- restart apache2