1 脚本内容 rsyncd_fun.sh
#!/bin/bash
#chkconfig: 2345 20 80
#description: start rsync and stop rsync scripts
. /etc/init.d/functions
function usage(){
echo $"usage:$0 {start|stop|restart}"
exit 1
}
function start(){
rsync --daemon
sleep 1
if [ `netstat -lntup|grep rsync|wc -l` -ge 1 ];then
action "rsyncd is started." /bin/true
else
action "rsyncd is started." /bin/false
fi
}
function stop(){
killall rsync
sleep 1
if [ `netstat -lntup|grep rsync|wc -l` -eq 0 ];then
action "rsyncd is stopped." /bin/true
else
action "rsync is started." /bin/false
fi
}
function main(){
if [ $# -ne 1 ];then