1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-20 01:42:27 +03:00

remove password passing in post-mysql-install

This commit is contained in:
david hill
2017-11-10 08:22:29 -06:00
parent cf7eecf8bb
commit cecc9edf7b

View File

@@ -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;