Fix crash when config file missing

This commit is contained in:
daniele 2023-06-18 22:58:53 +02:00
parent 22a3e8d60f
commit dd779d242b
Signed by: fuxino
GPG Key ID: 981A2B2A3BBF5514

View File

@ -606,7 +606,15 @@ def _expand_inputs(inputs):
def _read_config(config_file):
config_args = {}
config_args = {'inputs': None,
'output': None,
'exclude': None,
'keep': -1,
'host': None,
'username': None,
'ssh_keyfile': None,
'remote_sudo': False,
'numeric_ids': False}
if not os.path.isfile(config_file):
logger.warning('Config file %s does not exist', config_file)