summaryrefslogtreecommitdiff
path: root/playbooks/lamp/tasks/test.yml
diff options
context:
space:
mode:
authorjerome <jerome@xlinfo.fr>2025-02-12 15:05:59 +0100
committerjerome <jerome@xlinfo.fr>2025-02-12 15:05:59 +0100
commit3605d4eec0065530f692cb3e779e9ab50a0ca3e3 (patch)
treee20e657391c18d44af5d03f864a4c3db05b81690 /playbooks/lamp/tasks/test.yml
parent9041e48cd9b37e2bb39328ec21088ab48658f0f7 (diff)
downloadkvm-multi-3605d4eec0065530f692cb3e779e9ab50a0ca3e3.tar.gz
kvm-multi-3605d4eec0065530f692cb3e779e9ab50a0ca3e3.zip
correction
Diffstat (limited to 'playbooks/lamp/tasks/test.yml')
-rw-r--r--playbooks/lamp/tasks/test.yml19
1 files changed, 0 insertions, 19 deletions
diff --git a/playbooks/lamp/tasks/test.yml b/playbooks/lamp/tasks/test.yml
deleted file mode 100644
index c3d9c32..0000000
--- a/playbooks/lamp/tasks/test.yml
+++ /dev/null
@@ -1,19 +0,0 @@
----
-- name: install dépendances python
- package:
- name: '{{ mariadb.pythonlib }}'
- state: present
-
-- name: Créer la base de données test
- community.mysql.mysql_db:
- name: toto
- state: present
- login_unix_socket: '{{mariadb.socket}}'
-
-- name: Créer un utilisateur test
- community.mysql.mysql_user:
- name: toto
- password: secret
- priv: 'toto.*:ALL'
- state: present
- login_unix_socket: '{{mariadb.socket}}'