Ajout des playbooks pour le DokuWiki, séance Ansible.

This commit is contained in:
Guillaume Emorine
2024-10-14 16:29:33 +02:00
parent ec5ced5f1e
commit c06fca73e5
4 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
- name: 1. Installe les paquets requis pour le DokuWiki
apt:
name: "{{ item }}"
state: present
with_items:
- apache2
- php
- php-mbstring
- php-gd
- php-xml