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

Merge pull request #1 from ds1dbx/ds1dbx-detect-AmazonLinux

Add OS detection condition for Amazon Linux
This commit is contained in:
NoPD 2020-04-25 08:30:24 +09:00 committed by GitHub
commit aba37d31f4
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