mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
services: murmur: Fix server program name.
* 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 <ludo@gnu.org>
This commit is contained in:
parent
02c81a44c6
commit
8044a1fec9
1 changed files with 2 additions and 2 deletions
|
@ -936,7 +936,7 @@ (define (murmur-activation config)
|
||||||
(format #t "murmur: to set the SuperUser password run:
|
(format #t "murmur: to set the SuperUser password run:
|
||||||
`~a -ini ~a -readsupw`\n"
|
`~a -ini ~a -readsupw`\n"
|
||||||
#$(file-append (murmur-configuration-package config)
|
#$(file-append (murmur-configuration-package config)
|
||||||
"/bin/murmurd") ini)
|
"/bin/mumble-server") ini)
|
||||||
#t)))
|
#t)))
|
||||||
|
|
||||||
(define murmur-accounts
|
(define murmur-accounts
|
||||||
|
@ -961,7 +961,7 @@ (define (murmur-shepherd-service config)
|
||||||
(requirement '(networking))
|
(requirement '(networking))
|
||||||
(start #~(make-forkexec-constructor
|
(start #~(make-forkexec-constructor
|
||||||
'(#$(file-append (murmur-configuration-package config)
|
'(#$(file-append (murmur-configuration-package config)
|
||||||
"/bin/murmurd")
|
"/bin/mumble-server")
|
||||||
"-ini"
|
"-ini"
|
||||||
#$(or (murmur-configuration-file config)
|
#$(or (murmur-configuration-file config)
|
||||||
(default-murmur-config config)))
|
(default-murmur-config config)))
|
||||||
|
|
Loading…
Reference in a new issue