mirror of
https://git.freebsd.org/ports.git
synced 2025-05-02 11:36:40 -04:00
Lsyncd is designed to synchronize a local directory tree with low profile of expected changes to a remote mirror. Lsyncd is especially useful to sync data from a secure area to a not-so-secure area. WWW: https://axkibe.github.io/lsyncd/ PR: 228714 Submitted by: Junichi Satoh <junichi@junichi.org>
19 lines
318 B
Text
19 lines
318 B
Text
settings {
|
|
logfile = "/var/log/lsyncd.log",
|
|
statusFile = "/var/log/lsyncd.status",
|
|
statusInterval = 1,
|
|
maxProcesses = 2,
|
|
insist = 1,
|
|
}
|
|
|
|
sync{
|
|
default.rsync,
|
|
delay = 0,
|
|
source = "/data/test1",
|
|
target = "some_host::test1",
|
|
rsync = {
|
|
archive = true,
|
|
compress = true
|
|
},
|
|
delete = true
|
|
}
|