From dd85054388811c7cd2e93697e193e8154cab07b7 Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Sun, 5 Jul 2020 19:29:26 +0500 Subject: [PATCH] bug fix: remote mysql install --- install/install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/install.py b/install/install.py index 3b0c88e51..9f0bc3a77 100755 --- a/install/install.py +++ b/install/install.py @@ -440,8 +440,8 @@ class preFlightsChecks: command = "sed -i 's|localhost|%s|g' %s" % (self.mysqlhost, path) preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR) - command = "sed -i 's|'mysql'|'%s'|g' %s" % (self.mysqldb, path) - preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR) + # command = "sed -i 's|'mysql'|'%s'|g' %s" % (self.mysqldb, path) + # preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR) command = "sed -i 's|'USER': 'root',|'USER': '%s',|g' %s" % (self.mysqluser, path) preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)