guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/12: gnu: isc-dhcp: Remove unused net-tools input.


From: guix-commits
Subject: 07/12: gnu: isc-dhcp: Remove unused net-tools input.
Date: Thu, 19 Oct 2023 17:58:26 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 3145968e3894a691778c23cab23462a5f7a724ca
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Sep 24 02:00:00 2023 +0200

    gnu: isc-dhcp: Remove unused net-tools input.
    
    * gnu/packages/admin.scm (isc-dhcp)[arguments]:
    Don't wrap the ‘dhclient-script’ PATH with net-tools.
    [inputs]: Remove net-tools altogether.
---
 gnu/packages/admin.scm | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 4f55c926fe..ef44be4500 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -1553,7 +1553,6 @@ connection alive.")
                       (coreutils (assoc-ref inputs "coreutils*"))
                       (inetutils (assoc-ref inputs "inetutils"))
                       (grep      (assoc-ref inputs "grep*"))
-                      (net-tools (assoc-ref inputs "net-tools"))
                       (sed       (assoc-ref inputs "sed*")))
                  (substitute* "client/scripts/linux"
                    (("/sbin/ip")
@@ -1569,16 +1568,16 @@ connection alive.")
                      ,(map (lambda (dir)
                              (string-append dir "/bin:"
                                             dir "/sbin"))
-                           (list inetutils net-tools coreutils grep 
sed))))))))))
+                           (list inetutils coreutils grep sed))))))))))
 
       (native-inputs
        (list config perl file))
 
       (inputs `(("inetutils" ,inetutils)
                 ("bash" ,bash-minimal)
-                ,@(if (target-hurd?) '()
-                      `(("net-tools" ,net-tools)
-                        ("iproute" ,iproute)))
+                ,@(if (target-hurd?)
+                      '()
+                      `(("iproute" ,iproute)))
 
                 ;; isc-dhcp bundles a copy of BIND, which has proved vulnerable
                 ;; in the past.  Use a BIND-VERSION of our choosing instead.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]