Delete playbook

This commit is contained in:
s0dy 2018-11-01 16:59:28 +01:00
parent 3526166c01
commit e646b18d20

View File

@ -1,25 +0,0 @@
---
- 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