1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

MCOL-520 - chown sudo amazon

This commit is contained in:
David Hill
2018-10-30 09:18:39 -05:00
parent d4005120a6
commit d13e63ecaa

View File

@ -4654,16 +4654,17 @@ bool createDbrootDirs(string DBRootStorageType)
string cmd = "mount " + installDir + "/data1 > " + tmpDir + "/mount.txt 2>&1";
system(cmd.c_str());
//if Amazon, Non-Root, and External EBS, use sudo
string SUDO = "";
if ( amazonInstall && !rootUser &&
( DBRootStorageType == "external" ) )
SUDO = "sudo ";
if ( !rootUser)
{
//if Amazon, Non-Root, and External EBS, use sudo
string SUDO = "";
if ( amazonInstall )
SUDO = "sudo ";
cmd = SUDO + "chown -R " + USER + ":" + USER + " " + installDir + "/data1 > /dev/null";
cout << cmd << endl;
system(cmd.c_str());
cout << cmd << endl;
}
// create system file directories