1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #24069 from adamjk-dev/install_script_rhel_fix

Install script rhel fix
This commit is contained in:
Sebastiaan van Stijn 2016-06-29 11:04:55 -07:00 committed by GitHub
commit b9fc4ed664

View file

@ -251,6 +251,12 @@ do_install() {
lsb_dist="$(echo "$lsb_dist" | tr '[:upper:]' '[:lower:]')"
# Special case redhatenterpriseserver
if [ "${lsb_dist}" = "redhatenterpriseserver" ]; then
# Set it to redhat, it will be changed to centos below anyways
lsb_dist='redhat'
fi
case "$lsb_dist" in
ubuntu)