mirror of
https://github.com/angristan/wireguard-install.git
synced 2025-04-05 03:43:30 +03:00
Arch: check if current running kernel is LTS
This commit is contained in:
parent
40416da276
commit
0efa6d2eaf
1 changed files with 3 additions and 2 deletions
|
@ -143,8 +143,9 @@ 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
|
||||
ARCH_LTS_KERNEL=$(pacman -Qs linux-lts)
|
||||
if [[ -n ${ARCH_LTS_KERNEL} ]]; then
|
||||
# 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
|
||||
|
|
Loading…
Add table
Reference in a new issue