mirror of
https://github.com/octoleo/lsyncd.git
synced 2025-01-05 16:12:32 +00:00
add rsync.chown
This commit is contained in:
parent
60d84c3ea1
commit
545eb341cf
@ -1,5 +1,8 @@
|
||||
??-??-????:
|
||||
enhancement: add rsync options: "omit-dir-times" and "omit-link-times"
|
||||
enhancement: add rsync options:
|
||||
"chown",
|
||||
"omit-dir-times",
|
||||
"omit-link-times"
|
||||
change: _verbatim forced for 'exitcodes' entry.
|
||||
|
||||
15-10-2015: 2.1.6
|
||||
|
@ -57,6 +57,7 @@ rsync.checkgauge = {
|
||||
binary = true,
|
||||
bwlimit = true,
|
||||
checksum = true,
|
||||
chown = true,
|
||||
compress = true,
|
||||
copy_links = true,
|
||||
cvs_exclude = true,
|
||||
@ -487,6 +488,12 @@ rsync.prepare =
|
||||
computedN = computedN + 1
|
||||
end
|
||||
|
||||
if crsync.chown
|
||||
then
|
||||
computed[ computedN ] = '--chown=' .. crsync.chown
|
||||
computedN = computedN + 1
|
||||
end
|
||||
|
||||
if crsync.inplace
|
||||
then
|
||||
computed[ computedN ] = '--inplace'
|
||||
|
@ -425,39 +425,33 @@ end
|
||||
--
|
||||
-- allow processes
|
||||
--
|
||||
rsyncssh.maxProcesses =
|
||||
1
|
||||
rsyncssh.maxProcesses = 1
|
||||
|
||||
--
|
||||
-- The core should not split move events
|
||||
--
|
||||
rsyncssh.onMove =
|
||||
true
|
||||
rsyncssh.onMove = true
|
||||
|
||||
--
|
||||
-- default delay
|
||||
--
|
||||
rsyncssh.delay =
|
||||
15
|
||||
rsyncssh.delay = 15
|
||||
|
||||
|
||||
--
|
||||
-- no default exit codes
|
||||
--
|
||||
rsyncssh.exitcodes =
|
||||
false
|
||||
rsyncssh.exitcodes = false
|
||||
|
||||
--
|
||||
-- rsync exit codes
|
||||
--
|
||||
rsyncssh.rsyncExitCodes =
|
||||
default.rsyncExitCodes
|
||||
rsyncssh.rsyncExitCodes = default.rsyncExitCodes
|
||||
|
||||
--
|
||||
-- ssh exit codes
|
||||
--
|
||||
rsyncssh.sshExitCodes =
|
||||
default.sshExitCodes
|
||||
rsyncssh.sshExitCodes = default.sshExitCodes
|
||||
|
||||
--
|
||||
-- xargs calls configuration
|
||||
|
Loading…
Reference in New Issue
Block a user