mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-12-13 14:43:09 +00:00
83 lines
2.1 KiB
Lua
83 lines
2.1 KiB
Lua
----
|
|
-- User configuration file for lsyncd.
|
|
--
|
|
-- TODO documentation-
|
|
--
|
|
settings = {
|
|
-- logfile = "/tmp/lsyncd",
|
|
nodaemon,
|
|
loglevel = DEBUG,
|
|
}
|
|
|
|
print(bla)
|
|
|
|
------
|
|
-- for testing purposes
|
|
--
|
|
slower = "sleep 1 && "
|
|
slowbash = {
|
|
delay = 5,
|
|
|
|
startup = function(source, target)
|
|
log(NORMAL, "cp -r from "..source.." -> "..target)
|
|
return exec("/bin/bash", "-c", "cp -r \"$1\"* \"$2\"", "/bin/bash",
|
|
source, target)
|
|
end,
|
|
|
|
create = function(source, path, name, target)
|
|
local src = source..path..name
|
|
local trg = target..path..name
|
|
log(NORMAL, "create from "..src.." -> "..trg)
|
|
return exec("/bin/bash", "-c", slower.."cp \"$1\" \"$2\"", "/bin/bash",
|
|
src, trg)
|
|
end,
|
|
|
|
modify = function(source, path, name, target)
|
|
local src = source..path..name
|
|
local trg = target..path..name
|
|
log(NORMAL, "modify from "..src.." -> "..trg)
|
|
return exec("/bin/bash", "-c", slower.."cp \"$1\" \"$2\"", "/bin/bash",
|
|
src, trg)
|
|
end,
|
|
|
|
attrib = function(source, path, name, target)
|
|
-- ignore attribs
|
|
return 0
|
|
end,
|
|
|
|
delete = function(source, path, name, target)
|
|
log(NORMAL, "delete "..target..path..name)
|
|
return exec("/bin/bash", "-c", slower.."rm \"$1\"", "/bin/bash",
|
|
target..path..name)
|
|
end,
|
|
|
|
move = function(source, path, name, destpath, destname, target)
|
|
log(NORMAL, "move from " .. destination .. "/" .. path)
|
|
-- return exec("/bin/bash", "-c", "sleep " .. slowsec .. " && rm $1 $2", "/bin/bash",
|
|
-- source .. "/" .. path, target .. "/" .. path)
|
|
return 0
|
|
end,
|
|
}
|
|
|
|
-----
|
|
-- lsyncd classic - sync with rsync
|
|
--
|
|
-- All functions return the pid of a spawned process
|
|
-- or 0 if they didn't exec something.
|
|
rsync = {
|
|
----
|
|
-- Called for every sync/target pair on startup
|
|
startup = function(source, target)
|
|
log(NORMAL, "startup recursive rsync: " .. source .. " -> " .. target)
|
|
return exec("/usr/bin/rsync", "-ltrs", source, target)
|
|
end,
|
|
|
|
default = function(source, target, path)
|
|
return exec("/usr/bin/rsync", "--delete", "-ltds", source .. "/" .. path, target .. "/" .. path)
|
|
end
|
|
}
|
|
|
|
sync("s", "d/", slowbash)
|
|
|
|
|