mumble: murmurd renamed to mumble-server

- Update backup manifest config file location.

Fixes #2518

Tests:

- mumble functional tests are passed.

Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
James Valleroy 2026-02-14 08:31:47 -05:00 committed by Sunil Mohan Adapa
parent bc4730c33c
commit 2044fa3e84
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2
2 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ clients = [{
backup = { backup = {
'config': { 'config': {
'files': ['/etc/mumble-server.ini'] 'files': ['/etc/mumble/mumble-server.ini']
}, },
'data': { 'data': {
'directories': ['/var/lib/mumble-server'] 'directories': ['/var/lib/mumble-server']

View File

@ -35,8 +35,8 @@ def check_setup() -> bool:
@privileged @privileged
def set_super_user_password(password: secret_str): def set_super_user_password(password: secret_str):
"""Set the superuser password with murmurd command.""" """Set the superuser password with mumble-server command."""
action_utils.run(['murmurd', '-readsupw'], input=password.encode(), action_utils.run(['mumble-server', '-readsupw'], input=password.encode(),
check=False) check=False)