This commit is contained in:
Chiao-Wei Wang 2025-01-09 01:58:30 +00:00 committed by GitHub
commit 068a2e1cba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 1 deletions

View file

@ -17,6 +17,7 @@ WireGuard does not fit your environment? Check out [openvpn-install](https://git
Supported distributions:
- AlmaLinux >= 8
- Amazon Linux
- Arch Linux
- CentOS Stream >= 8
- Debian >= 10

View file

@ -61,8 +61,10 @@ function checkOS() {
OS=oracle
elif [[ -e /etc/arch-release ]]; then
OS=arch
elif [[ ${ID} == "amzn" ]] || [[ ${ID_LIKE} == *"amzn"* ]]; then
OS=amazon
else
echo "Looks like you aren't running this installer on a Debian, Ubuntu, Fedora, CentOS, AlmaLinux, Oracle or Arch Linux system"
echo "Looks like you aren't running this installer on a Debian, Ubuntu, Fedora, CentOS, AlmaLinux, Oracle, Amazon or Arch Linux system"
exit 1
fi
}
@ -204,6 +206,11 @@ function installWireGuard() {
dnf install -y wireguard-tools qrencode iptables
elif [[ ${OS} == 'arch' ]]; then
pacman -S --needed --noconfirm wireguard-tools qrencode
elif [[ ${OS} == 'amazon' ]]; then
# Amazon Linux specific installation
yum update -y
amazon-linux-extras install epel -y
yum install -y wireguard-tools iptables qrencode
fi
# Make sure the directory exists (this does not seem the be the case on fedora)
@ -458,6 +465,8 @@ function uninstallWg() {
yum remove --noautoremove wireguard-tools qrencode
elif [[ ${OS} == 'arch' ]]; then
pacman -Rs --noconfirm wireguard-tools qrencode
elif [[ ${OS} == 'amazon' ]]; then
yum remove -y --noautoremove wireguard-tools qrencode
fi
rm -rf /etc/wireguard