Update 'tasks/mysql-conf.yml'

apparmor mod required on changing mysql data dir
This commit is contained in:
Tommaso Piccioli 2021-10-18 14:22:00 +02:00
parent a5dae2eba4
commit 3ba66fdba4
1 changed files with 9 additions and 1 deletions

View File

@ -32,7 +32,15 @@
with_items:
- server
notify: Restart mysql
- name: Add AppArmor alias
lineinfile: path=/etc/apparmor.d/tunables/alias line='alias /var/lib/mysql/ -> {{ mysql_data_dir }}/,' insertafter=EOF
when: my_data_dir.stat.isdir is not defined
- name: Restart AppArmor service
service: name=apparmor state=restarted
when: my_data_dir.stat.isdir is not defined
- name: Start the mysql service with the new the data directory
service: name=mysql state=started
when: my_data_dir.stat.isdir is not defined