From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Mages via Bug reports for GNU Guix Subject: bug#40277: murmur-configuration missing newline in config file Date: Sun, 29 Mar 2020 15:54:16 +0200 Message-ID: Reply-To: Simon Mages Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:49624) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jIbSj-0000VF-6n for bug-guix@gnu.org; Sun, 29 Mar 2020 13:11:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jIbSh-0002mb-A8 for bug-guix@gnu.org; Sun, 29 Mar 2020 13:11:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48098) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jIbSh-0002mG-5D for bug-guix@gnu.org; Sun, 29 Mar 2020 13:11:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jIbSh-0007fT-1X for bug-guix@gnu.org; Sun, 29 Mar 2020 13:11:03 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:59683) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jIYOJ-0004hL-Ce for bug-guix@gnu.org; Sun, 29 Mar 2020 09:54:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jIYOI-0003Eu-AW for bug-guix@gnu.org; Sun, 29 Mar 2020 09:54:19 -0400 Received: from mail-vs1-xe29.google.com ([2607:f8b0:4864:20::e29]:38775) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jIYOI-0003CO-4z for bug-guix@gnu.org; Sun, 29 Mar 2020 09:54:18 -0400 Received: by mail-vs1-xe29.google.com with SMTP id x206so9291266vsx.5 for ; Sun, 29 Mar 2020 06:54:17 -0700 (PDT) List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane-mx.org@gnu.org Sender: "bug-Guix" To: 40277@debbugs.gnu.org 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"