1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-24 14:20:59 +03:00

MCOL-520 - remove sudo for checking gluster log

This commit is contained in:
David Hill
2018-11-07 10:13:00 -06:00
parent deba5d2a10
commit 3727203b8f

View File

@@ -5544,7 +5544,7 @@ bool storageSetup(bool amazonInstall)
// if gluster
if ( storageType == "3" )
{
string command = SUDO + "stat /var/run/glusterd.pid > /dev/null 2>&1";
string command = "stat /var/run/glusterd.pid > /dev/null 2>&1";
int status = system(command.c_str());
if (WEXITSTATUS(status) != 0 )