From e66988840bb9012b686856059655646a569de044 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sun, 17 May 2020 12:43:47 -0700 Subject: [PATCH] mumble: Stop server during backup/restore Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/mumble/manifest.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plinth/modules/mumble/manifest.py b/plinth/modules/mumble/manifest.py index 3dfcca553..d605e6817 100644 --- a/plinth/modules/mumble/manifest.py +++ b/plinth/modules/mumble/manifest.py @@ -66,4 +66,9 @@ clients = validate([{ }] }]) -backup = validate_backup({'data': {'directories': ['/var/lib/mumble-server']}}) +backup = validate_backup({ + 'data': { + 'directories': ['/var/lib/mumble-server'] + }, + 'services': ['mumble-server'] +})