summaryrefslogtreecommitdiff
path: root/playbooks/lamp/tasks/test.yml
blob: c3d9c32e7fe43c1d97a9ccbdc87308812fd0f74f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
- 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}}'