mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
services: murmur: Add missing newline in murmur-configuration.
* gnu/services/telephony.scm (default-murmur-config): Add newline after "max-user-bandwidth". Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
0673d55d95
commit
83670e02bc
1 changed files with 3 additions and 1 deletions
|
@ -182,7 +182,9 @@ (define (default-murmur-config config)
|
||||||
"welcometext=" welcome-text "\n"
|
"welcometext=" welcome-text "\n"
|
||||||
"port=" (number->string port) "\n"
|
"port=" (number->string port) "\n"
|
||||||
(if server-password (list "serverpassword=" server-password "\n") '())
|
(if server-password (list "serverpassword=" server-password "\n") '())
|
||||||
(if max-user-bandwidth (list "bandwidth=" (number->string max-user-bandwidth)) '())
|
(if max-user-bandwidth (list "bandwidth="
|
||||||
|
(number->string max-user-bandwidth) "\n")
|
||||||
|
'())
|
||||||
"users=" (number->string max-users) "\n"
|
"users=" (number->string max-users) "\n"
|
||||||
"uname=" user "\n"
|
"uname=" user "\n"
|
||||||
"database=" database-file "\n"
|
"database=" database-file "\n"
|
||||||
|
|
Loading…
Reference in a new issue