all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#40277: murmur-configuration missing newline in config file
@ 2020-03-29 13:54 Simon Mages via Bug reports for GNU Guix
  2020-04-02 17:10 ` Marius Bakke
  0 siblings, 1 reply; 2+ messages in thread
From: Simon Mages via Bug reports for GNU Guix @ 2020-03-29 13:54 UTC (permalink / raw)
  To: 40277

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"

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-04-02 17:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-29 13:54 bug#40277: murmur-configuration missing newline in config file Simon Mages via Bug reports for GNU Guix
2020-04-02 17:10 ` Marius Bakke

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.