mirror of
https://github.com/teddysun/across.git
synced 2025-01-19 06:19:35 +08:00
Alter the args for apt-get in func install_wg_3 (#67)
Do not install recommended packages when installing the `wireguard-tools` on a Debian-based OS running kernel newer than 5.6
This commit is contained in:
parent
8e430eb5a8
commit
728595928b
@ -372,13 +372,13 @@ install_wg_3() {
|
||||
ubuntu)
|
||||
_error_detect "add-apt-repository ppa:wireguard/wireguard"
|
||||
_error_detect "apt-get update"
|
||||
_error_detect "apt-get -y install wireguard-tools"
|
||||
_error_detect "apt-get -y install --no-install-recommends wireguard-tools"
|
||||
;;
|
||||
debian)
|
||||
echo "deb http://deb.debian.org/debian/ unstable main" > /etc/apt/sources.list.d/unstable.list
|
||||
printf 'Package: *\nPin: release a=unstable\nPin-Priority: 90\n' > /etc/apt/preferences.d/limit-unstable
|
||||
_error_detect "apt-get update"
|
||||
_error_detect "apt-get -y install wireguard-tools"
|
||||
_error_detect "apt-get -y install --no-install-recommends wireguard-tools"
|
||||
;;
|
||||
fedora)
|
||||
_error_detect "dnf -y copr enable jdoss/wireguard"
|
||||
|
Loading…
x
Reference in New Issue
Block a user