mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-11 07:40:55 +00:00
23 lines
534 B
Lua
23 lines
534 B
Lua
-----
|
|
-- User configuration file for lsyncd.
|
|
--
|
|
-- This example uses just echos the operations
|
|
--
|
|
|
|
-----
|
|
-- for testing purposes. just echos what is happening.
|
|
--
|
|
echo = {
|
|
maxProcesses = 1,
|
|
delay = 1,
|
|
onStartup = "/bin/echo telling about ^source",
|
|
onAttrib = "/bin/echo attrib ^pathname",
|
|
onCreate = "/bin/echo create ^pathname",
|
|
onDelete = "/bin/echo delete ^pathname",
|
|
onModify = "/bin/echo modify ^pathname",
|
|
onMove = "/bin/echo move ^o.pathname -> ^d.pathname",
|
|
}
|
|
|
|
sync{echo, source="src", target="/path/to/trg/"}
|
|
|