mbakke pushed a commit to branch master
in repository guix.
commit 83670e02bc1be9481a6957a8cdb977f35a0ac483
Author: Simon Mages <[email protected]>
AuthorDate: Sun Mar 29 15:54:16 2020 +0200
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 <[email protected]>
---
gnu/services/telephony.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/services/telephony.scm b/gnu/services/telephony.scm
index 0a73531..e1259cc 100644
--- a/gnu/services/telephony.scm
+++ b/gnu/services/telephony.scm
@@ -182,7 +182,9 @@
"welcometext=" welcome-text "\n"
"port=" (number->string port) "\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"
"uname=" user "\n"
"database=" database-file "\n"