This commit is contained in:
Axel Kittenberger 2017-01-09 11:14:23 +01:00
parent a0ab850ec0
commit 288f09ad01
2 changed files with 15 additions and 10 deletions

View File

@ -1,4 +1,7 @@
2017-01-05: 2.1.1 ????-??-??: 2.2.2
fix: checkgauge 'insist'
2017-01-05: 2.2.1
enhancement: now always using filter lists with rysnc enhancement: now always using filter lists with rysnc
instead of include/exclude lists taking advantage of the new --delete-missing-args instead of include/exclude lists taking advantage of the new --delete-missing-args
parameter to delete files on target. parameter to delete files on target.

View File

@ -88,7 +88,7 @@ local settingsCheckgauge =
statusInterval = true, statusInterval = true,
logfacility = true, logfacility = true,
logident = true, logident = true,
insisit = true, insist = true,
inotifyMode = true, inotifyMode = true,
maxProcesses = true, maxProcesses = true,
maxDelays = true, maxDelays = true,
@ -2091,8 +2091,7 @@ local Sync = ( function
end end
-- a sub dir and not concerned about subdirs -- a sub dir and not concerned about subdirs
if if self.config.subdirs == false
self.config.subdirs == false
and path:sub( #self.source, -1 ):match( '[^/]+/?' ) and path:sub( #self.source, -1 ):match( '[^/]+/?' )
then then
return false return false
@ -3174,7 +3173,9 @@ local Syncs = ( function
-- Tests if any sync is interested in a path. -- Tests if any sync is interested in a path.
-- --
local function concerns local function concerns
( path ) (
path
)
for _, s in ipairs( syncsList ) for _, s in ipairs( syncsList )
do do
if s:concerns( path ) if s:concerns( path )
@ -3301,6 +3302,7 @@ local Inotify = ( function
if wd < 0 if wd < 0
then then
log( 'Inotify','Unable to add watch "', path, '"' ) log( 'Inotify','Unable to add watch "', path, '"' )
return return
end end