From 8044a1fec91e91b7cc45e3c486433e8a0a1ca2d5 Mon Sep 17 00:00:00 2001 From: fesoj000 Date: Mon, 21 Mar 2022 22:42:05 +0100 Subject: [PATCH] services: murmur: Fix server program name. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/services/telephony.scm (murmur-activation): (murmur-shepherd-service): Change file name of mumble server, which is now called mumble-server instead of murmurd since version 1.4.x. Co-authored-by: Ludovic Courtès --- gnu/services/telephony.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/services/telephony.scm b/gnu/services/telephony.scm index e678bae87c..157d96abd6 100644 --- a/gnu/services/telephony.scm +++ b/gnu/services/telephony.scm @@ -936,7 +936,7 @@ (define (murmur-activation config) (format #t "murmur: to set the SuperUser password run: `~a -ini ~a -readsupw`\n" #$(file-append (murmur-configuration-package config) - "/bin/murmurd") ini) + "/bin/mumble-server") ini) #t))) (define murmur-accounts @@ -961,7 +961,7 @@ (define (murmur-shepherd-service config) (requirement '(networking)) (start #~(make-forkexec-constructor '(#$(file-append (murmur-configuration-package config) - "/bin/murmurd") + "/bin/mumble-server") "-ini" #$(or (murmur-configuration-file config) (default-murmur-config config)))