From 230624cdebebc9d9f3dc7757d40d648127d1ba3b Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Wed, 30 Oct 2019 08:21:54 +0100 Subject: [PATCH] fix config path config path must be 'cfg', not 'etc' Change-Id: I835091f16ced3896126dcb650fc37155b15c95c2 Reviewed-on: https://forge.frm2.tum.de/review/c/sine2020/secop/playground/+/21482 Tested-by: JenkinsCodeReview Reviewed-by: Enrico Faulhaber Reviewed-by: Markus Zolliker --- secop/lib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/secop/lib/__init__.py b/secop/lib/__init__.py index 240c78c..6ae75de 100644 --- a/secop/lib/__init__.py +++ b/secop/lib/__init__.py @@ -40,7 +40,7 @@ repodir = path.abspath(path.join(path.dirname(__file__), '..', '..')) CONFIG = { 'piddir': os.path.join(repodir, 'pid'), 'logdir': os.path.join(repodir, 'log'), - 'confdir': os.path.join(repodir, 'etc'), + 'confdir': os.path.join(repodir, 'cfg'), 'basedir': repodir, } if os.path.exists(os.path.join(repodir, '.git')) else { 'piddir': '/var/run/secop',