Add Amazon Linux support

This commit is contained in:
CW-B-W 2025-01-08 11:14:34 +08:00
parent 86958c2a99
commit d11475eaf1

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,19 @@ 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
# Enable WireGuard kernel module
echo "Enabling WireGuard kernel module..."
modprobe wireguard
if ! lsmod | grep -q wireguard; then
echo "Failed to load WireGuard kernel module"
exit 1
fi
fi
# Make sure the directory exists (this does not seem the be the case on fedora)
@ -458,6 +473,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