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:
IceCodeNew 2020-06-20 13:14:19 +08:00 committed by GitHub
parent 8e430eb5a8
commit 728595928b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"