Use metapackage to install kernel headers on Ubuntu

The ‘linux-headers-generic’ package is preferred over the version-specific headers package as the generic will be automatically  updated with the kernel, whereas the other will not.
This commit is contained in:
Orazio 2020-01-18 22:04:18 +01:00 committed by GitHub
parent 66cf44e774
commit fc9a9f5ab7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1100,7 +1100,7 @@ installWireGuard(){
echo "::: Installing WireGuard from PPA... "
$SUDO add-apt-repository ppa:wireguard/wireguard -y
$SUDO ${UPDATE_PKG_CACHE}
PIVPN_DEPS=(qrencode wireguard wireguard-tools wireguard-dkms linux-headers-$(uname -r))
PIVPN_DEPS=(qrencode wireguard wireguard-tools wireguard-dkms linux-headers-generic)
installDependentPackages PIVPN_DEPS[@]
fi