confighelper: add config file path to systemargs

Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Arksine 2021-01-06 12:01:51 -05:00
parent 4ae63dbbf8
commit f1a75117db
1 changed files with 1 additions and 0 deletions

View File

@ -106,6 +106,7 @@ def get_configuration(server, system_args):
logging.getLogger().setLevel(logging.DEBUG)
config['system_args'] = {
'configfile': system_args.configfile,
'logfile': system_args.logfile,
'software_version': system_args.software_version}
return ConfigHelper(server, config, 'server')