rsync启动脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rsync启动脚本相关的知识,希望对你有一定的参考价值。

#!/bin/bash
#chkconfig: 2345 30 50
#Date:2017-6-29
#Author:xcn([email protected])
#version 1.0
PID="/var/run/rsync.pid"
start_rsync(){
if [ -f $PID ]  
then 
	echo "rsync is running"
else
	 rsync --daemon
	echo "rsync is started"
fi
}

stop_rsync(){
if [ -f $PID ]   #存在而不为空
then
	kill -USR2 `cat $PID`
	rm -rf $PID
	echo "rsync is stoped"
else
	echo "rsync no running"
fi
}

case $1 in
	start)
	start_rsync
	;;
	stop)
	stop_rsync
	;;
	restart)
	stop_rsync
	start_rsync
	;;
	*)
	echo "USAGE:$0 {start|stop|restart}"
	exit1
esac


本文出自 “小菜鸟” 博客,请务必保留此出处http://baishuchao.blog.51cto.com/12918589/1943177

以上是关于rsync启动脚本的主要内容,如果未能解决你的问题,请参考以下文章

开发rsync启动脚本2

rsync启动停止脚本

rsync 启动脚本

开发rsync服务的启动脚本

rsync启动关闭shell脚本

rsync启动脚本