From cecc9edf7b034be7bffab6adead4fc6d13d43fa5 Mon Sep 17 00:00:00 2001 From: david hill Date: Fri, 10 Nov 2017 08:22:29 -0600 Subject: [PATCH] remove password passing in post-mysql-install --- oamapps/postConfigure/helpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oamapps/postConfigure/helpers.cpp b/oamapps/postConfigure/helpers.cpp index 3d84496ed..b53a17302 100644 --- a/oamapps/postConfigure/helpers.cpp +++ b/oamapps/postConfigure/helpers.cpp @@ -259,7 +259,7 @@ void mysqlSetup() HOME = p; } - cmd = installDir + "/bin/post-mysql-install " + pwprompt + " --installdir=" + installDir + " > /tmp/post-mysql-install.log";; + cmd = installDir + "/bin/post-mysql-install --installdir=" + installDir + " > /tmp/post-mysql-install.log";; rtnCode = system(cmd.c_str()); if (WEXITSTATUS(rtnCode) == 2) { cout << "Error running post-mysql-install, password is needed. check " + HOME + "/.my.cnf " << endl;