Added code to detect Core OS distribution.
This commit is contained in:
Shital Savekar 2014-12-21 17:28:38 +05:30
Родитель dde6d80942
Коммит e2fc08cfc1
2 изменённых файлов: 11 добавлений и 0 удалений

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

@ -50,6 +50,13 @@ done
else
echo "Unknown"
fi
elif [ -e /etc/os-release ]; then
tmp=`cat /etc/os-release`
if [[ "$tmp" == *coreos* ]]; then
echo "COREOS"
exitVal=0
fi
fi
return $exitVal
}

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

@ -107,6 +107,10 @@ Function DetectLinuxDistro($VIP, $SSHport, $testVMUser, $testVMPassword)
{
$CleanedDistroName = "FEDORA"
}
elseif ($DistroName -imatch "COREOS")
{
$CleanedDistroName = "COREOS"
}
else
{
$CleanedDistroName = "UNKNOWN"