diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-05-04 21:09:29 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-05-04 21:09:29 +0200 |
commit | 2d49f8452215ab6e898589cd757d02fc1f1fc930 (patch) | |
tree | d5de6db2fee789c962b9d5aa35eb419dbdae9e7f | |
parent | 0e2672aee3087e31bb49920c3eb1544220ae33d4 (diff) | |
download | patches-2d49f8452215ab6e898589cd757d02fc1f1fc930.tar patches-2d49f8452215ab6e898589cd757d02fc1f1fc930.tar.gz |
services: networking: Fix typo in static networking service.
* gnu/services/networking.scm (static-networking-service): Use
$inetutils/bin/ifconfig, not $inetutils/sbin/ifconfig.
-rw-r--r-- | gnu/services/networking.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm index 5522541735..8bb05850e3 100644 --- a/gnu/services/networking.scm +++ b/gnu/services/networking.scm @@ -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"))))) |