services: static-networking: Remove unused parameter.
This is a followup to e48fcd7b8d
.
* gnu/services/networking.scm (static-networking-service): Remove #:net-tools.
(static-networking-service-type): Remove outdated comment.
This commit is contained in:
parent
e01e2c6c52
commit
b3131e2318
|
@ -126,9 +126,6 @@ fe80::1%lo0 apps.facebook.com\n")
|
||||||
(($ <static-networking> interface ip netmask gateway provision
|
(($ <static-networking> interface ip netmask gateway provision
|
||||||
name-servers)
|
name-servers)
|
||||||
(let ((loopback? (memq 'loopback provision)))
|
(let ((loopback? (memq 'loopback provision)))
|
||||||
|
|
||||||
;; TODO: Eventually replace 'route' with bindings for the appropriate
|
|
||||||
;; ioctls.
|
|
||||||
(shepherd-service
|
(shepherd-service
|
||||||
|
|
||||||
;; Unless we're providing the loopback interface, wait for udev to be up
|
;; Unless we're providing the loopback interface, wait for udev to be up
|
||||||
|
@ -191,8 +188,7 @@ fe80::1%lo0 apps.facebook.com\n")
|
||||||
#:key
|
#:key
|
||||||
netmask gateway
|
netmask gateway
|
||||||
(provision '(networking))
|
(provision '(networking))
|
||||||
(name-servers '())
|
(name-servers '()))
|
||||||
(net-tools net-tools))
|
|
||||||
"Return a service that starts @var{interface} with address @var{ip}. If
|
"Return a service that starts @var{interface} with address @var{ip}. If
|
||||||
@var{netmask} is true, use it as the network mask. If @var{gateway} is true,
|
@var{netmask} is true, use it as the network mask. If @var{gateway} is true,
|
||||||
it must be a string specifying the default network gateway."
|
it must be a string specifying the default network gateway."
|
||||||
|
|
Loading…
Reference in New Issue