Arch: checking for LTS kernel

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

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