mirror of
https://github.com/angristan/wireguard-install.git
synced 2024-11-22 04:35:09 +00:00
arch: Install LTS kernel headers when running LTS kernel (#135)
This commit is contained in:
parent
2cd6191c93
commit
487aa4feda
@ -141,7 +141,13 @@ function installWireGuard() {
|
|||||||
yum -y install epel-release kernel kernel-devel kernel-headers
|
yum -y install epel-release kernel kernel-devel kernel-headers
|
||||||
yum -y install wireguard-dkms wireguard-tools iptables qrencode
|
yum -y install wireguard-dkms wireguard-tools iptables qrencode
|
||||||
elif [[ ${OS} == 'arch' ]]; then
|
elif [[ ${OS} == 'arch' ]]; then
|
||||||
pacman -S --noconfirm linux-headers
|
# Check if current running kernel is LTS
|
||||||
|
ARCH_KERNEL_RELEASE=$(uname -r)
|
||||||
|
if [[ ${ARCH_KERNEL_RELEASE} == *lts* ]]; then
|
||||||
|
pacman -S --noconfirm linux-lts-headers
|
||||||
|
else
|
||||||
|
pacman -S --noconfirm linux-headers
|
||||||
|
fi
|
||||||
pacman -S --noconfirm wireguard-tools iptables qrencode
|
pacman -S --noconfirm wireguard-tools iptables qrencode
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user