This commit is contained in:
Axel Kittenberger 2016-08-29 13:14:51 +02:00
commit fa3028321b
2 changed files with 5 additions and 2 deletions

View File

@ -2,8 +2,12 @@
enhancement: add rsync options: enhancement: add rsync options:
"chown", "chown",
"omit-dir-times", "omit-dir-times",
"omit-dir-times"
"omit-link-times" "omit-link-times"
change: _verbatim forced for 'exitcodes' entry. change: _verbatim forced for 'exitcodes' entry.
fix: ']' is not escaped for rsync rules, since rsync only applies
doesn't applie pattern matching if no other pattern chars
are found.
15-10-2015: 2.1.6 15-10-2015: 2.1.6
enhancement: Lsyncd now locks its pidfile enhancement: Lsyncd now locks its pidfile

View File

@ -123,8 +123,7 @@ rsync.action = function( inlet )
return p: return p:
gsub( '%?', '\\?' ): gsub( '%?', '\\?' ):
gsub( '%*', '\\*' ): gsub( '%*', '\\*' ):
gsub( '%[', '\\[' ): gsub( '%[', '\\[' )
gsub( '%]', '\\]' )
end end
-- --