Update init-tools.sh to detect rhel6

This commit is contained in:
Wes Haggard 2017-08-10 16:33:48 -07:00
Родитель 11cbcc4975
Коммит f41b2697b3
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -33,6 +33,14 @@ OSName=$(uname -s)
Linux)
__DOTNET_PKG=dotnet-dev-linux-x64
OS=Linux
if [ -e /etc/redhat-release ]; then
redhatRelease=$(</etc/redhat-release)
if [[ $redhatRelease == "CentOS release 6."* || $redhatRelease == "Red Hat Enterprise Linux Server release 6."* ]]; then
__DOTNET_PKG=dotnet-dev-rhel.6-x64
fi
fi
;;
*)