From 8bcd7f96116b1ddae1d1c57e5476115b8e7025a5 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Thu, 31 Dec 2020 12:34:18 -0800 Subject: [PATCH] radicale: Fix backup and restore of configuration Perhaps the configuration was earlier stored under /var and symlinked from /etc/ but currently it is a separate directory and needs to be backed up. Tests: - Run functional tests for the radicale. Signed-off-by: Sunil Mohan Adapa Reviewed-by: Veiko Aasa --- plinth/modules/radicale/manifest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plinth/modules/radicale/manifest.py b/plinth/modules/radicale/manifest.py index aded1f039..7d876df49 100644 --- a/plinth/modules/radicale/manifest.py +++ b/plinth/modules/radicale/manifest.py @@ -79,6 +79,9 @@ clients = [{ }] backup = { + 'config': { + 'directories': ['/etc/radicale/'] + }, 'data': { 'directories': ['/var/lib/radicale/'] },