From e0c980b02d47f3914839920f8c8d651fcc500bbd Mon Sep 17 00:00:00 2001 From: NoPD Date: Tue, 21 Apr 2020 13:24:59 +0900 Subject: [PATCH] Add OS detection condition for Amazon Linux * Add OS detection logic with os-release file - will set boolean variable named isAmazon * Update group_name set logic to use isAmazon boolean variable - Amazon Linux works compatible with CentOS distributions --- openvpn-install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index f5c1c38..19d75a1 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -26,6 +26,11 @@ Use an older version if Ubuntu 16.04 support is needed: https://git.io/vpn1604' exit fi +# Detect Amazon Linux which does not provide OS specific *-release file +if grep -qs "Amazon Linux" /etc/os-release; then + isAmazon=1 +fi + # Detect Debian users running the script with "sh" instead of bash if readlink /proc/$$/exe | grep -q "dash"; then echo "This script needs to be run with bash, not sh" @@ -46,7 +51,7 @@ fi if [[ -e /etc/debian_version ]]; then os="debian" group_name="nogroup" -elif [[ -e /etc/centos-release || -e /etc/redhat-release ]]; then +elif [[ -e /etc/centos-release || -e /etc/redhat-release || $isAmazon ]]; then os="centos" group_name="nobody" else