From 1ddff1f7ef717db8b718d4c929a516519a48b552 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Mon, 15 Jan 2018 16:48:29 +0100 Subject: [PATCH] Fix failure on Fedora 27 For a reason I didn't found yet, the parser of the python-mysql module is less forgiving on Fedora than on EL7. And so spaces tend to confuse him, resulting in "Access denied for user 'root'@'localhost' (using password: NO)" --- templates/my.client.cnf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/my.client.cnf b/templates/my.client.cnf index 3b71ca2..2a03a64 100644 --- a/templates/my.client.cnf +++ b/templates/my.client.cnf @@ -1,4 +1,4 @@ [client] -user = root -password = {{ rdbms_root_pw }} +user=root +password={{ rdbms_root_pw }}