Account for mariadb versioning
This commit is contained in:
parent
d48dffc298
commit
dafb39da2e
1 changed files with 6 additions and 2 deletions
|
@ -182,6 +182,10 @@ def server_version_check(cursor):
|
|||
version_str = result[0]
|
||||
version = version_str.split('.')
|
||||
|
||||
# Currently we have no facility to handle new-style password update on
|
||||
# mariadb and the old-style update continues to work
|
||||
if version_str.lower().endswith('mariadb'):
|
||||
return True
|
||||
if (int(version[0]) <= 5 and int(version[1]) < 7):
|
||||
return True
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue