mise a jour playbook installation glpi

This commit is contained in:
root
2023-12-13 19:02:53 +01:00
parent fc7d4de480
commit db7640bd5c
14 changed files with 122 additions and 248 deletions

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