Jelajahi Sumber

Fixed issue #23787 install script not working for RHEL7 host

Signed-off-by: Ken Cochrane <kencochrane@gmail.com>
(cherry picked from commit 0e84474672fb30449028b4f7a678d5ab6a81f102)
Ken Cochrane 9 tahun lalu
induk
melakukan
8f677417d1
1 mengubah file dengan 2 tambahan dan 1 penghapusan
  1. 2 1
      hack/install.sh

+ 2 - 1
hack/install.sh

@@ -243,7 +243,8 @@ do_install() {
 		lsb_dist='centos'
 	fi
 	if [ -z "$lsb_dist" ] && [ -r /etc/redhat-release ]; then
-		lsb_dist='redhat'
+		# we use centos for both redhat and centos releases
+		lsb_dist='centos'
 	fi
 	if [ -z "$lsb_dist" ] && [ -r /etc/os-release ]; then
 		lsb_dist="$(. /etc/os-release && echo "$ID")"