diff options
author | Simon Mages <mages.simon@googlemail.com> | 2020-03-29 15:54:16 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-04-02 20:55:15 +0200 |
commit | 83670e02bc1be9481a6957a8cdb977f35a0ac483 (patch) | |
tree | a7035491628c58e691ea20b7c0f3d115a53a49f3 /gnu/services | |
parent | 0673d55d953a6e36f25a07dad5df233077b6a0f3 (diff) | |
download | guix-83670e02bc1be9481a6957a8cdb977f35a0ac483.tar guix-83670e02bc1be9481a6957a8cdb977f35a0ac483.tar.gz |
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>
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/telephony.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/services/telephony.scm b/gnu/services/telephony.scm index 0a735315b4..e1259cc2df 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" |