mirror of
https://github.com/angristan/wireguard-install.git
synced 2025-04-05 03:43:30 +03:00
support for AlmaLinux 9, kmod-wireguard is only for version 8
This commit is contained in:
parent
b559fb304c
commit
e12f680f96
1 changed files with 8 additions and 2 deletions
|
@ -150,7 +150,10 @@ function installWireGuard() {
|
|||
dnf install -y wireguard-tools iptables qrencode
|
||||
elif [[ ${OS} == 'almalinux' ]]; then
|
||||
dnf -y install epel-release elrepo-release
|
||||
dnf -y install kmod-wireguard wireguard-tools iptables qrencode
|
||||
dnf -y install wireguard-tools iptables qrencode
|
||||
if [[ ${VERSION_ID} == 8* ]]; then
|
||||
dnf -y install kmod-wireguard
|
||||
fi
|
||||
elif [[ ${OS} == 'centos' ]]; then
|
||||
yum -y install epel-release elrepo-release
|
||||
if [[ ${VERSION_ID} -eq 7 ]]; then
|
||||
|
@ -387,7 +390,10 @@ function uninstallWg() {
|
|||
fi
|
||||
dnf autoremove -y
|
||||
elif [[ ${OS} == 'almalinux' ]]; then
|
||||
dnf -y remove kmod-wireguard wireguard-tools qrencode
|
||||
dnf -y remove wireguard-tools qrencode
|
||||
if [[ ${VERSION_ID} == 8* ]]; then
|
||||
dnf -y remove kmod-wireguard
|
||||
fi
|
||||
dnf -y autoremove
|
||||
elif [[ ${OS} == 'centos' ]]; then
|
||||
yum -y remove kmod-wireguard wireguard-tools qrencode
|
||||
|
|
Loading…
Add table
Reference in a new issue