summaryrefslogtreecommitdiff
path: root/gnu/services/networking.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-05-04 21:09:29 +0200
committerLudovic Courtès <ludo@gnu.org>2014-05-04 21:09:29 +0200
commit2d49f8452215ab6e898589cd757d02fc1f1fc930 (patch)
treed5de6db2fee789c962b9d5aa35eb419dbdae9e7f /gnu/services/networking.scm
parent0e2672aee3087e31bb49920c3eb1544220ae33d4 (diff)
services: networking: Fix typo in static networking service.
* gnu/services/networking.scm (static-networking-service): Use $inetutils/bin/ifconfig, not $inetutils/sbin/ifconfig.
Diffstat (limited to 'gnu/services/networking.scm')
-rw-r--r--gnu/services/networking.scm2
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")))))