--- Begin Message ---
Subject: |
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"
--- End Message ---
--- Begin Message ---
Subject: |
Re: bug#40277: murmur-configuration missing newline in config file |
Date: |
Thu, 02 Apr 2020 19:10:53 +0200 |
User-agent: |
Notmuch/0.29.3 (https://notmuchmail.org) Emacs/26.3 (x86_64-pc-linux-gnu) |
Simon Mages via Bug reports for GNU Guix <address@hidden> writes:
> 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:
Nice find, applied!
PS: In the future, please send git-style patches created with 'git
format-patch' to make merging easier.
signature.asc
Description: PGP signature
--- End Message ---