mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-12-04 10:58:28 +00:00
add advanced ssh example
This commit is contained in:
parent
75bb0fb084
commit
99a682f4cd
35
examples/lrsyncssh-advanced.lua
Normal file
35
examples/lrsyncssh-advanced.lua
Normal file
@ -0,0 +1,35 @@
|
||||
settings {
|
||||
logfile = "/home/lsync/job1/lsyncd.log",
|
||||
statusFile = "/home/lsync/job1/lsyncd.status",
|
||||
insist = true
|
||||
}
|
||||
|
||||
sync {
|
||||
default.rsyncssh,
|
||||
source = "/data/projects",
|
||||
host = "offsitehost",
|
||||
targetdir = "/data/projects",
|
||||
excludeFrom = "/home/lsync/job1/lsyncd.exclude",
|
||||
delay = 5,
|
||||
rsync = {
|
||||
verbose = true,
|
||||
inplace = true,
|
||||
_extra = {
|
||||
"--info=progress2"
|
||||
}
|
||||
},
|
||||
ssh = {
|
||||
identityFile = "/home/lsync/.ssh/id_rsa_new",
|
||||
options = {
|
||||
User = "poelzi",
|
||||
StrictHostKeyChecking = "no",
|
||||
Compression = "no",
|
||||
Cipher = "aes256-gcm@openssh.com"
|
||||
},
|
||||
_extra = {
|
||||
"-T",
|
||||
"-c",
|
||||
"aes256-gcm@openssh.com"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user