rsync 做文件同步 或者 svn 同步后 钩子钩到服务器上的工具
rsync 安装
(centos)
yum -y install rsync
/usr/bin/rsync --daemon --config=/etc/rsyncd.conf
#/etc/rsyncd.conf
#####################################################
uid = webuser
gid = webuser
read only = no
hosts allow = 192.168.100.90 # 哪些电脑可以访问rsync服务
hosts deny = 192.168.100.0/24 # 哪些电脑不可以访问rsync服务
[web]
path = /data/www/test
auth users = yzy
secrets file = /etc/rsyncd/rsyncd.secrets
#####################################################