bug-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#40277: murmur-configuration missing newline in config file


From: Simon Mages
Subject: bug#40277: murmur-configuration missing newline in config file
Date: Sun, 29 Mar 2020 15:54:16 +0200

Hi,

i am using guix on my server and i want to use mumble.
I found that it is working fine so far, but there is this one bug.
The config file generated is missing a newline.

The following patch fixes the issue:

diff --git a/gnu/services/telephony.scm b/gnu/services/telephony.scm
index 0a735315b4..572fd1a051 100644
--- a/gnu/services/telephony.scm
+++ b/gnu/services/telephony.scm
@@ -182,7 +182,7 @@
            "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"





reply via email to

[Prev in Thread] Current Thread [Next in Thread]