Răsfoiți Sursa

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
IceCodeNew 5 ani în urmă
părinte
comite
728595928b
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      wireguard.sh

+ 2 - 2
wireguard.sh

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