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)