From 2044fa3e84e413b0267aa9f9ff44c362efa2f27c Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Sat, 14 Feb 2026 08:31:47 -0500 Subject: [PATCH] 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 Reviewed-by: Sunil Mohan Adapa --- plinth/modules/mumble/manifest.py | 2 +- plinth/modules/mumble/privileged.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plinth/modules/mumble/manifest.py b/plinth/modules/mumble/manifest.py index b51c1d3e9..bd987690a 100644 --- a/plinth/modules/mumble/manifest.py +++ b/plinth/modules/mumble/manifest.py @@ -56,7 +56,7 @@ clients = [{ backup = { 'config': { - 'files': ['/etc/mumble-server.ini'] + 'files': ['/etc/mumble/mumble-server.ini'] }, 'data': { 'directories': ['/var/lib/mumble-server'] diff --git a/plinth/modules/mumble/privileged.py b/plinth/modules/mumble/privileged.py index f602087e1..ff51d111f 100644 --- a/plinth/modules/mumble/privileged.py +++ b/plinth/modules/mumble/privileged.py @@ -35,8 +35,8 @@ def check_setup() -> bool: @privileged def set_super_user_password(password: secret_str): - """Set the superuser password with murmurd command.""" - action_utils.run(['murmurd', '-readsupw'], input=password.encode(), + """Set the superuser password with mumble-server command.""" + action_utils.run(['mumble-server', '-readsupw'], input=password.encode(), check=False)