me
/
guix
Archived
1
0
Fork 0

services: networking: Fix typo in static networking service.

* gnu/services/networking.scm (static-networking-service): Use
  $inetutils/bin/ifconfig, not $inetutils/sbin/ifconfig.
master
Ludovic Courtès 2014-05-04 21:09:29 +02:00
parent 0e2672aee3
commit 2d49f84522
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ true, it must be a string specifying the default network gateway."
#t))))
(stop #~(lambda _
;; Return #f is successfully stopped.
(not (and (system* (string-append #$inetutils "/sbin/ifconfig")
(not (and (system* (string-append #$inetutils "/bin/ifconfig")
#$interface "down")
(system* (string-append #$net-tools "/sbin/route")
"del" "-net" "default")))))