2012-06-01 51 views
1

我試圖使用名爲lsyncd的軟件,它使用一個用lua編寫的配置文件來存儲配置選項。Lsyncd選項問題

settings = { 
logfile = "/logs/log.log", 
pidfile = "/var/run/lsyncd.pid", 
statusFile="/var/log/lsyncd.stat", 
statusIntervall=5, 
delay = 1 
} 
sync { 
default.rsync, 
source = "/source/folder", 
target = "/destination/folder", 
excludeFrom="/etc/exclude", 
} 

即將在操作上運行命令的能力手動會談甚至還有一個例子

fgroup = "staff" 

----- 
-- script for all changes. 
-- 
command = 
-- checks if the group is the one enforced and sets them if not 
'[[ 
perm=`stat -c %A ^sourcePathname` 
if test `stat -c %G ^sourcePathname` != ]]..fgroup..'[[; then 
     /bin/chgrp ]]..fgroup..'[[ ^sourcePathname || /bin/true; 
fi 
]] .. 

-- checks if the group permissions are rw and sets them 
'[[ 
if test `expr match $perm "....rw"` = 0; then 
     /bin/chmod g+rw ^sourcePathname || /bin/true; 
fi 
]] .. 

-- and forces the executable bit for directories. 
'[[ 
if test -d ^sourcePathname; then 
     if test `expr match $perm "......x"` -eq 0; then 
       /bin/chmod g+x ^^sourcePathname || /bin/true; 
     fi 
fi 
]] 

-- on startup recursively sets all group ownerships 
-- all group permissions are set to 'rw' 
-- and to executable flag for directories 
-- 
-- the hash in the first line is important, otherwise due to the starting 
-- slash, Lsyncd would think it is a call to the binary /bin/chgrp only 
-- and would optimize the shell call away. 
-- 
startup = 
'[[# 
/bin/chgrp -R ]]..fgroup..'[[ ^source || /bin/true && 
/bin/chmod -R g+rw ^source || /bin/true && 
/usr/bin/find ^source -type d | xargs chmod g+x 
]] 

    gforce = { 
     maxProcesses = 99, 
     delay  = 1, 
     onStartup = startup, 
     onAttrib  = command, 
     onCreate  = command, 
     onModify  = command, 
     -- does nothing on moves, they won't change permissions 
     onMove  = true, 
    } 

    sync{gforce, source="/path/to/share"} 

,但我只是想執行一個簡單的本地命令的onCreate,onModify,onMove

/path/to/script.sh args 

我知道的可能很簡單,但我無法弄清楚。

回答

0

命令似乎是字符串。然後,我會嘗試:

... 
onStartup = "/path/to/script.sh args", 
onAttrib = [[/path/to/script.sh args]], -- both '', "", and [[ ]] are string delimiters 
.... 
-1

請嘗試python腳本軟件Watcher,並配置jobs.yml爲例。

...... 
events: ['create', 'modify', 'move'] 
...... 
command:/path/to/script.sh args 
0

嘗試這樣:

my_cmds = 
[[ 
    /path/to/script.sh args 
]] 

monitor = 
{ 
    delay = 1, 
    onAttrib = my_cmds, 
    onCreate = my_cmds, 
    onModify = my_cmds, 
    onMove = my_cmds, 
} 

sync 
{ 
    monitor, 
    source = "/source/folder", 
    target = "/destination/folder", 
}