1
1
mirror of https://github.com/angristan/wireguard-install.git synced 2024-06-01 03:00:47 +00:00

checking for LTS kernel (ARCH)

This commit is contained in:
farzin 2020-09-14 00:29:40 +04:30
parent 315646ae12
commit c030c1f67a

View File

@ -143,7 +143,12 @@ function installWireGuard() {
yum -y install epel-release kernel kernel-devel kernel-headers
yum -y install wireguard-dkms wireguard-tools iptables qrencode
elif [[ ${OS} == 'arch' ]]; then
pacman -S --noconfirm linux-headers
ARCH_LTS_KERNEL=$(pacman -Qs linux-lts)
if [[ -n ${ARCH_LTS_KERNEL} ]]; then
pacman -S --noconfirm linux-lts-headers
else
pacman -S --noconfirm linux-headers
fi
pacman -S --noconfirm wireguard-tools iptables qrencode
fi