This commit is contained in:
raphanaud
2021-10-15 10:34:08 +02:00
parent 8d82565aaa
commit 36874c851a
4 changed files with 89 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
- name: installation apache2
apt:
name: apache2
state: present
- name: installation php
apt:
name: php
state: present
- name: installation php-mbstring
apt:
name: php-mbstring
state: present
- name: installation php-gd
apt:
name: php-gd
state: present
- name: installation php-xml
apt:
name: php-xml
state: present