Merge "Rename mysql to mariadb for registered var"

This commit is contained in:
Zuul 2020-07-03 10:37:04 +00:00 committed by Gerrit Code Review
commit 1826d4fded

View File

@ -60,9 +60,9 @@
- name: Check that WSREP is ready and Synced
shell: "/usr/bin/mysqladmin extended-status | egrep '(wsrep_local_state_comment)'"
register: mysql_ready
register: mariadb_ready
until:
- mysql_ready.rc == 0
- (mysql_ready.stdout).find("Synced") != -1
- mariadb_ready.rc == 0
- (mariadb_ready.stdout).find("Synced") != -1
retries: 60
delay: 1