radicale: Workaround issue with creating log directory

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2019-06-06 18:06:25 -07:00 committed by James Valleroy
parent e4351b6b97
commit 20aa2abe3b
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -31,6 +31,7 @@ from plinth import action_utils
from plinth.modules import radicale
COLLECTIONS_PATH = '/var/lib/radicale/collections'
LOG_PATH = '/var/log/radicale'
CONFIG_FILE = '/etc/radicale/config'
@ -125,6 +126,9 @@ def subcommand_fix_collections(_):
if not os.path.exists(COLLECTIONS_PATH):
os.makedirs(COLLECTIONS_PATH)
if not os.path.exists(LOG_PATH):
os.makedirs(LOG_PATH)
def load_augeas():
"""Initialize Augeas."""