mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 15:01:05 +01:00
9 lines
239 B
YAML
9 lines
239 B
YAML
|
---
|
||
|
- name: install MariaDB
|
||
|
pacman: name=mariadb state=present
|
||
|
notify: mariadb restart
|
||
|
|
||
|
- name: executing installation script
|
||
|
command: mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql
|
||
|
notify: mariadb restart
|