1
0
Fork 0
mirror of https://github.com/Nyr/openvpn-install.git synced 2025-04-05 05:33:30 +03:00

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
This commit is contained in:
NoPD 2020-04-21 13:24:59 +09:00 committed by GitHub
parent cec053def4
commit e0c980b02d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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