Alan Orth
a38e2a4ff6
I can't remember right now why I needed to use Debian's MariaDB build but now I just want to use upstream's latest stable. Debian's version is 10.1 and upstream has moved on to 10.2.
55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
---
|
|
- name: Add GPG key for MariaDB repo
|
|
apt_key: id=0x177F4010FE56CA3336300305F1656F24C74CD1D8 url=https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x177F4010FE56CA3336300305F1656F24C74CD1D8
|
|
tags: mariadb, packages
|
|
|
|
- name: Add MariaDB 10.2 repo
|
|
template: src=mariadb.list.j2 dest=/etc/apt/sources.list.d/mariadb.list owner=root group=root mode=0644
|
|
tags: mariadb, packages
|
|
|
|
- name: Install mariadb-server
|
|
apt: name={{ item }} state=present update_cache=yes
|
|
with_items:
|
|
- mariadb-server
|
|
- python-mysqldb # for ansible
|
|
tags: mariadb, packages
|
|
|
|
- name: Create system my.cnf
|
|
template: src=my.cnf.j2 dest=/etc/mysql/my.cnf owner=root group=root mode=0644
|
|
notify:
|
|
- restart mysql
|
|
tags: mariadb
|
|
|
|
- name: Start and enable MariaDB Service
|
|
service: name=mysql state=started enabled=true
|
|
tags: mariadb
|
|
|
|
# 'localhost' needs to be the last item for idempotency, see
|
|
# http://ansible.cc/docs/modules.html#mysql-user
|
|
- name: Update MariaDB root password for all root accounts
|
|
mysql_user: name=root host={{ item }} password={{ mariadb_root_password }}
|
|
with_items:
|
|
- "{{ inventory_hostname }}"
|
|
- 127.0.0.1
|
|
- ::1
|
|
- localhost
|
|
tags: mariadb
|
|
|
|
- name: Create .my.conf file with root credentials
|
|
template: src=.my.cnf.j2 dest=/root/.my.cnf owner=root mode=0600
|
|
tags: mariadb
|
|
|
|
- name: Create MariaDB database(s)
|
|
mysql_db: db={{ item.name }} state=present encoding=utf8mb4
|
|
with_items: "{{ mariadb_databases }}"
|
|
when: mariadb_databases is defined
|
|
tags: mariadb
|
|
|
|
- name: Create MariaDB user(s)
|
|
mysql_user: name={{ item.user }} password={{ item.pass }} priv={{ item.name }}.*:ALL state=present
|
|
with_items: "{{ mariadb_databases }}"
|
|
when: mariadb_databases is defined
|
|
tags: mariadb
|
|
|
|
# vim: set ts=2 sw=2:
|