This commit is contained in:
2021-07-15 15:42:30 -06:00
parent 0bb0af608f
commit 12b275a050
74 changed files with 9436 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
---
# Plain debian mysql-server (which could be a metapackage for mariadb)
- name: Installing MySQL
apt:
update_cache: yes
state: present
name:
- mysql-server
- python-mysqldb # Required for ansible to createdb or createuser

4
db/mysql/tasks/main.yml Normal file
View File

@@ -0,0 +1,4 @@
---
# Install Debian Default MySQL Server (could even be a meta package for mariadb)
- include_tasks: install-debian.yml
when: ansible_os_family == "Debian"