This commit is contained in:
2026-04-04 18:25:21 +02:00
commit 29ea40bf8e
10 changed files with 1090 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
---
- name: "Déploiement Automatique Database"
hosts: Database
become: yes
tasks:
- name: Installer mariadb-server
apt:
name: mariadb-server
state: present
update-cache: yes
- name: Installer mariadb-client
apt:
name: mariadb-client
state: present