diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2020-11-02 01:26:35 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2020-11-02 01:26:35 +0100 |
commit | e603fb6732501b9e501fe378306a5714285fdfe3 (patch) | |
tree | 6c9e74815ded95a906d0dbed6ef8b8e8beebac42 /roles/common-SQL/tasks | |
parent | 26bae877102752a41a903cab2ee0891f8f261d38 (diff) |
Refactor SQL custom configuration.
As of MariaDB 10.3 this should be more future proof.
Diffstat (limited to 'roles/common-SQL/tasks')
-rw-r--r-- | roles/common-SQL/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/common-SQL/tasks/main.yml b/roles/common-SQL/tasks/main.yml index cd1d091..927f567 100644 --- a/roles/common-SQL/tasks/main.yml +++ b/roles/common-SQL/tasks/main.yml @@ -9,8 +9,8 @@ - libcache-cache-perl - name: Copy MySQL/MariaDB configuration - copy: src=etc/mysql/my.cnf - dest=/etc/mysql/my.cnf + copy: src=etc/mysql/mariadb.conf.d/99-user.cnf + dest=/etc/mysql/mariadb.conf.d/99-user.cnf owner=root group=root mode=0644 register: r |