mirror of
https://github.com/angristan/openvpn-install.git
synced 2024-11-22 08:49:03 +01:00
Add Amazon Linux 2 support (#459)
This commit is contained in:
parent
2aab3792ca
commit
30735c91d8
@ -93,7 +93,8 @@ Password-protected clients are not supported by the headless installation method
|
|||||||
The script supports these OS and architectures:
|
The script supports these OS and architectures:
|
||||||
|
|
||||||
| | i386 | amd64 | armhf | arm64 |
|
| | i386 | amd64 | armhf | arm64 |
|
||||||
| ------------ | ---- | ----- | ----- | ----- |
|
| -------------- | ---- | ----- | ----- | ----- |
|
||||||
|
| Amazon Linux 2 | ❔ | ✅ | ❔ | ❔ |
|
||||||
| Arch Linux | ❔ | ✅ | ❔ | ❔ |
|
| Arch Linux | ❔ | ✅ | ❔ | ❔ |
|
||||||
| CentOS 7 | ❔ | ✅ | ❌ | ✅ |
|
| CentOS 7 | ❔ | ✅ | ❌ | ✅ |
|
||||||
| Debian 8 | ✅ | ✅ | ❌ | ❌ |
|
| Debian 8 | ✅ | ✅ | ❌ | ❌ |
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Secure OpenVPN server installer for Debian, Ubuntu, CentOS, Fedora and Arch Linux
|
# Secure OpenVPN server installer for Debian, Ubuntu, CentOS, Amazon Linux 2, Fedora and Arch Linux
|
||||||
# https://github.com/angristan/openvpn-install
|
# https://github.com/angristan/openvpn-install
|
||||||
|
|
||||||
function isRoot () {
|
function isRoot () {
|
||||||
@ -50,6 +50,18 @@ function checkOS () {
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
elif [[ -e /etc/system-release ]]; then
|
||||||
|
source /etc/os-release
|
||||||
|
if [[ "$ID" == "amzn" ]]; then
|
||||||
|
OS="amzn"
|
||||||
|
if [[ ! $VERSION_ID =~ (2) ]]; then
|
||||||
|
echo "⚠️ Your version of Amazon Linux is not supported."
|
||||||
|
echo ""
|
||||||
|
echo "The script only support Amazon Linux 2."
|
||||||
|
echo ""
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
elif [[ -e /etc/fedora-release ]]; then
|
elif [[ -e /etc/fedora-release ]]; then
|
||||||
OS=fedora
|
OS=fedora
|
||||||
elif [[ -e /etc/centos-release ]]; then
|
elif [[ -e /etc/centos-release ]]; then
|
||||||
@ -70,7 +82,7 @@ function checkOS () {
|
|||||||
elif [[ -e /etc/arch-release ]]; then
|
elif [[ -e /etc/arch-release ]]; then
|
||||||
OS=arch
|
OS=arch
|
||||||
else
|
else
|
||||||
echo "Looks like you aren't running this installer on a Debian, Ubuntu, Fedora, CentOS or Arch Linux system"
|
echo "Looks like you aren't running this installer on a Debian, Ubuntu, Fedora, CentOS, Amazon Linux 2 or Arch Linux system"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -101,7 +113,7 @@ hide-version: yes
|
|||||||
use-caps-for-id: yes
|
use-caps-for-id: yes
|
||||||
prefetch: yes' >> /etc/unbound/unbound.conf
|
prefetch: yes' >> /etc/unbound/unbound.conf
|
||||||
|
|
||||||
elif [[ "$OS" = "centos" ]]; then
|
elif [[ "$OS" =~ (centos|amzn) ]]; then
|
||||||
yum install -y unbound
|
yum install -y unbound
|
||||||
|
|
||||||
# Configuration
|
# Configuration
|
||||||
@ -148,7 +160,7 @@ prefetch: yes' >> /etc/unbound/unbound.conf
|
|||||||
prefetch: yes' > /etc/unbound/unbound.conf
|
prefetch: yes' > /etc/unbound/unbound.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ! "$OS" =~ (fedora|centos) ]];then
|
if [[ ! "$OS" =~ (fedora|centos|amzn) ]];then
|
||||||
# DNS Rebinding fix
|
# DNS Rebinding fix
|
||||||
echo "private-address: 10.0.0.0/8
|
echo "private-address: 10.0.0.0/8
|
||||||
private-address: 172.16.0.0/12
|
private-address: 172.16.0.0/12
|
||||||
@ -604,6 +616,9 @@ function installOpenVPN () {
|
|||||||
elif [[ "$OS" = 'centos' ]]; then
|
elif [[ "$OS" = 'centos' ]]; then
|
||||||
yum install -y epel-release
|
yum install -y epel-release
|
||||||
yum install -y openvpn iptables openssl wget ca-certificates curl
|
yum install -y openvpn iptables openssl wget ca-certificates curl
|
||||||
|
elif [[ "$OS" = 'amzn' ]]; then
|
||||||
|
amazon-linux-extras install -y epel
|
||||||
|
yum install -y openvpn iptables openssl wget ca-certificates curl
|
||||||
elif [[ "$OS" = 'fedora' ]]; then
|
elif [[ "$OS" = 'fedora' ]]; then
|
||||||
dnf install -y openvpn iptables openssl wget ca-certificates curl
|
dnf install -y openvpn iptables openssl wget ca-certificates curl
|
||||||
elif [[ "$OS" = 'arch' ]]; then
|
elif [[ "$OS" = 'arch' ]]; then
|
||||||
@ -1088,7 +1103,7 @@ function removeUnbound () {
|
|||||||
apt-get autoremove --purge -y unbound
|
apt-get autoremove --purge -y unbound
|
||||||
elif [[ "$OS" = 'arch' ]]; then
|
elif [[ "$OS" = 'arch' ]]; then
|
||||||
pacman --noconfirm -R unbound
|
pacman --noconfirm -R unbound
|
||||||
elif [[ "$OS" = 'centos' ]]; then
|
elif [[ "$OS" =~ (centos|amzn) ]]; then
|
||||||
yum remove -y unbound
|
yum remove -y unbound
|
||||||
elif [[ "$OS" = 'fedora' ]]; then
|
elif [[ "$OS" = 'fedora' ]]; then
|
||||||
dnf remove -y unbound
|
dnf remove -y unbound
|
||||||
@ -1153,7 +1168,7 @@ function removeOpenVPN () {
|
|||||||
fi
|
fi
|
||||||
elif [[ "$OS" = 'arch' ]]; then
|
elif [[ "$OS" = 'arch' ]]; then
|
||||||
pacman --noconfirm -R openvpn
|
pacman --noconfirm -R openvpn
|
||||||
elif [[ "$OS" = 'centos' ]]; then
|
elif [[ "$OS" =~ (centos|amzn) ]]; then
|
||||||
yum remove -y openvpn
|
yum remove -y openvpn
|
||||||
elif [[ "$OS" = 'fedora' ]]; then
|
elif [[ "$OS" = 'fedora' ]]; then
|
||||||
dnf remove -y openvpn
|
dnf remove -y openvpn
|
||||||
|
Loading…
Reference in New Issue
Block a user