[stable-2.6] Fix MySQL tests when running under Docker. (#50047)

(cherry picked from commit 0ccd231afd)

Co-authored-by: Matt Clay <matt@mystile.com>
pull/50104/head
Matt Clay 6 years ago
parent f0a10a914a
commit 2627522046

@ -71,8 +71,14 @@
line: 'mysql_server_enable="YES"'
when: ansible_os_family == "FreeBSD"
- name: start mysql_db service if not running
service: name={{ mysql_service }} state=started
- name: apply work-around for OverlayFS issue
# https://github.com/docker/for-linux/issues/72#issuecomment-319904698
command: find /var/lib/mysql -type f -exec touch {} ;
# find will fail if mysql has never been started, as the directory won't exist
ignore_errors: yes
- name: restart mysql_db service
service: name={{ mysql_service }} state=restarted
- name: Detect socket path
shell: >

Loading…
Cancel
Save