me
/
guix
Archived
1
0
Fork 0

doc: Remove extraneous spaces from the net-options default value snippet.

Adapting the snippet corresponding to the default value of the net-options
field of the hurd-vm-configuration record shown in the manual would easily
lead to a broken childhurd service, due to the presence of extraneous spaces
in the option string.

* doc/guix.texi (Virtualization Services)[hurd-vm-configuration]
<net-options>: Use string-append to properly form the option string.
master
Maxim Cournoyer 2021-04-26 23:23:19 -04:00
parent 4de688738c
commit ef63a4fa3b
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 5 additions and 4 deletions

View File

@ -29028,10 +29028,11 @@ By default, it produces
@lisp
'("--device" "rtl8139,netdev=net0"
"--netdev" "user,id=net0\
,hostfwd=tcp:127.0.0.1:@var{secrets-port}-:1004\
,hostfwd=tcp:127.0.0.1:@var{ssh-port}-:2222\
,hostfwd=tcp:127.0.0.1:@var{vnc-port}-:5900")
"--netdev" (string-append
"user,id=net0,"
"hostfwd=tcp:127.0.0.1:@var{secrets-port}-:1004,"
"hostfwd=tcp:127.0.0.1:@var{ssh-port}-:2222,"
"hostfwd=tcp:127.0.0.1:@var{vnc-port}-:5900"))
@end lisp
with forwarded ports: