mirror of
https://github.com/Aviortheking/Blog_IMIE.git
synced 2025-04-23 19:32:15 +00:00
26 lines
490 B
YAML
26 lines
490 B
YAML
---
|
|
- hosts: hifive
|
|
become: yes
|
|
become_user: root
|
|
tasks:
|
|
- name: install mariadb
|
|
apt:
|
|
pkg:
|
|
- mariadb-server
|
|
- mariadb-client
|
|
- mariadb-common
|
|
- python-mysqldb
|
|
state: present
|
|
|
|
- name: Create a new user bob
|
|
mysql_user:
|
|
name: bob
|
|
password: bob
|
|
priv: '*.*:ALL'
|
|
state: present
|
|
|
|
- name: Create a new database bobdata
|
|
mysql_db:
|
|
name: bobdata
|
|
state: present
|