16 lines
437 B
YAML
16 lines
437 B
YAML
- name: Install MariaDB Server
|
|
ansible.builtin.apt:
|
|
name: mariadb-server
|
|
state: present
|
|
|
|
- name: Change the bind-address to allow Docker
|
|
ansible.builtin.lineinfile:
|
|
path: /etc/mysql/mariadb.conf.d/50-server.cnf
|
|
regex: "^bind-address"
|
|
line: "bind-address = 0.0.0.0"
|
|
notify: restart_mariadb
|
|
|
|
- name: Install MySQL Support for Python 3
|
|
ansible.builtin.apt:
|
|
name: python3-pymysql
|
|
state: present |