mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-08 20:02:32 +01:00
Do not error out when no job is configured (Closes: #597684)
Conflicts: ChangeLog
This commit is contained in:
parent
34e439ea7b
commit
f49a612006
1
AUTHORS
1
AUTHORS
@ -35,3 +35,4 @@ stefan <s.freudenberg@jpberlin.de> -- dup support for Amazon S3 buckets
|
||||
maniacmartin <martin@maniacmartin.com> -- rdiff confusing error message fix
|
||||
Chris Nolan <chris@cenolan.com> -- maildir subdirectory expansion
|
||||
Dan Carley -- mysql bugfix
|
||||
Jordi Mallach <jordi@debian.org> -- do not error when no jobs are configured
|
||||
|
@ -1,3 +1,8 @@
|
||||
version 0.9.8.1 -- UNRELEASED
|
||||
backupninja changes
|
||||
. Do not error out when no job is configured. Thanks to Jordi Mallach
|
||||
<jordi@debian.org> for the patch (Closes: #597684)
|
||||
|
||||
version 0.9.8 -- September 12, 2010
|
||||
backupninja changes
|
||||
. Added GZIP_OPTS option, defaulting to --rsyncable, so that this
|
||||
|
@ -519,7 +519,7 @@ else
|
||||
files=`find $configdirectory -follow -mindepth 1 -maxdepth 1 -type f ! -name '.*.swp' | sort -n`
|
||||
|
||||
if [ -z "$files" ]; then
|
||||
fatal "No backup actions configured in '$configdirectory', run ninjahelper!"
|
||||
info "No backup actions configured in '$configdirectory', run ninjahelper!"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user