fix compatibility with distro using python3 to run agent and do some minor fix

This commit is contained in:
Nidylei 2015-09-15 15:38:30 +08:00
Родитель 9b995b7bb9
Коммит f2c2b09b9e
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -2290,7 +2290,7 @@ Function DoTestCleanUp($result, $testName, $DeployedServices, $ResourceGroups, [
LogMsg "Cleaning up deployed test virtual machines."
$isClened = DeleteResourceGroup -RGName $group
if ($isClened)
if (!$isClened)
{
LogMsg "CleanUP unsuccessful for $group.. Please delete the services manually."
}

Просмотреть файл

@ -33,4 +33,8 @@ def RunTest(command):
if(distro == "COREOS"):
RunTest("waagent --version")
else:
RunTest("/usr/sbin/waagent --version")
output = Run("ps aux | grep waagent | grep python | grep -v 'ps aux | grep waagent | grep python'")
if ("python3" in output) :
RunTest("/usr/bin/python3 /usr/sbin/waagent --version")
else :
RunTest("/usr/sbin/waagent --version")