mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
services: static-networking: Remove use of unbound variable.
Use of ‘G_’ was added in 670d985cab but
it’s actually unbound.
* gnu/services/base.scm (network-set-up/linux): Remove uses of ‘G_’,
which is unbound.
Change-Id: I6e879688ceee2fcb738e5e213cd3d539c9d89e20
This commit is contained in:
parent
728af8117e
commit
1cd221c9e9
1 changed files with 4 additions and 2 deletions
|
|
@ -3355,14 +3355,16 @@ to CONFIG."
|
|||
(apply link-set
|
||||
(link-id link)
|
||||
(alist->keyword+value '#$arguments))
|
||||
(format #t (G_ "Interface with name '~a' not found~%") #$name))))
|
||||
(format #t "Interface with name '~a' not found~%"
|
||||
#$name))))
|
||||
((string? mac-address)
|
||||
#~(let ((link (match-link-by link-addr #$mac-address)))
|
||||
(if link
|
||||
(apply link-set
|
||||
(link-id link)
|
||||
(alist->keyword+value '#$arguments))
|
||||
(format #t (G_ "Interface with mac-address '~a' not found~%") #$mac-address)))))))
|
||||
(format #t "Interface with mac-address '~a' not found~%"
|
||||
#$mac-address)))))))
|
||||
links)
|
||||
|
||||
;; 'wait-for-link' below could wait forever when
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue