lsyncd: Can't run sync with rsync chown option

1.1k Views Asked by At

Whats incorrect about this syntax? it wont let me run the sync..

settings = {
    logfile = "/var/log/lsyncd/lsyncd.log",
    statusFile = "/var/log/lsyncd/lsyncd.status"
},
sync {
    default.rsync,
    source = "/home/path1",
    target = "/home/path2",
    delay     = 15, 
    rsync     = {
        chown = webdev:webdev
    }
}
1

There are 1 best solutions below

0
On

This works for me:

rsync     = {
    owner = true,
    group = true,
    chown = "webdev:webdev"
}