From 622b6bcf4c99f34e69a63792e6d4d33177ee1fdd Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 2 Nov 2020 07:59:28 +0100 Subject: [PATCH] fix forum #115478 --- 98_backup.pm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/98_backup.pm b/98_backup.pm index b14eee5..7fc2417 100644 --- a/98_backup.pm +++ b/98_backup.pm @@ -162,10 +162,13 @@ sub addConfDBFiles { else { # get pathnames to archiv push( @pathname, $configfile ) if ($configfile); - Log( 2, 'backup include: ' . $configfile ); + Log( 2, 'backup include: ' . $configfile ) + if ($configfile); + $ret = parseConfig($configfile); push( @pathname, $statefile ) if ($statefile); - Log( 2, 'backup include: ' . $statefile ); + Log( 2, 'backup include: ' . $statefile ) + if ($statefile); } return $ret;