Merge branch 'fix-configuration-file-location' into 'master'

Fix configuration file location

See merge request ungleich-public/cdist!863
This commit is contained in:
poljakowski 2020-04-26 09:33:38 +02:00
commit 80d204368a
1 changed files with 2 additions and 1 deletions

View File

@ -274,7 +274,8 @@ class Configuration(metaclass=Singleton):
os.path.isfile(_local_config_file))):
_local_config_file = os.path.join(
os.environ.get('XDG_CONFIG_HOME',
os.path.expanduser('~/.config/cdist')),
os.path.expanduser('~/.config/')),
'cdist',
_config_basename)
_dist_config_file = os.path.join(
os.path.abspath(os.path.join(os.path.dirname(cdist.__file__), "conf")),