Add MySQL server role

This commit is contained in:
staticsafe 2018-06-10 12:40:53 -04:00
parent 4874d5fcfc
commit 02e8237c42
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
- name: Install MySQL server
apt: pkg=mysql-server state=latest
- name: Start MySQL daemon and ensure it starts on boot
service: name=mysql state=started enabled=yes