Renames roles

This commit is contained in:
2025-11-18 14:35:38 +01:00
parent ff82d63bd0
commit 581e3b2a9f
63 changed files with 1165 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# tasks file for mysql
---
- name: install tools
apt: name={{item}} state=present update_cache=yes
with_items:
- python3-mysqldb
- name: install mysql-server
apt: name=mysql-server state=present update_cache=yes
- name: chmod cnf
command: chmod 777 /etc/mysql/my.cnf
- name: ensure mysql listening on all ports
lineinfile: dest=/etc/mysql/my.cnf regexp=^bind-address line="bind-address = 0.0.0.0"
notify: restart mysql
- name: ensure mysql started
service: name=mysql state=started enabled=yes
- name: create demo database
mysql_db: name=demo state=present
- name: create demo user
mysql_user: name=demo password=demo priv=demo.*:ALL host='%' state=present