start(){ /usr/bin/rsync --daemon #在后台运行 sleep 1 if [ `ss -tunlp|grep rsync|wc -l` -ge "1" ] #检查进程或者端口确保运行 then #log_success_msg "Rsync is started!" echo"Rsync is started successfully!" else #log_failure_msg "Rsync failed to start!" echo"Rsync failed to start!" fi }
stop(){ killall rsync &>/dev/null sleep 1 if [ `ss -tunlp|grep rsync|wc -l` -eq "0" ] then #log_success_msg "Rsync is stopped!" echo"Rsync is stopped successfully!" else #log_failure_msg "Rsync failed to stop!" echo"Rsync failed to stop!" fi }
restart(){ killall rsync &>/dev/null var1=`ss -tunlp|grep rsync|wc -l` /usr/bin/rsync --ddeamon var2=`ss -tunlp|grep rsync|wc -l` if [ "$var1" -lt "$var2" ] then #log_success_msg "Rsync is started!" echo"Rsync is restarted successfully!" else #log_failure_msg "Rsync failed to restart!" echo"Rsync failed to restart!" fi }
main(){ if [ "$#" -ne "1" ] then usage fi
if [ "$1" = "start" ] then start elif [ "$1" = "stop" ] then stop elif [ "$1" = "restart" ] then restart else usage fi
} #调用函数接口 main $*
执行演示
1 2 3 4 5 6 7 8 9 10
[root@localhost ~]# /root/rsync_func start Rsync is started successfully! [root@localhost ~]# /root/rsync_func stop Rsync is stopped successfully! [root@localhost ~]# /root/rsync_func restart Rsync is restarted successfully! [root@localhost ~]# /root/rsync_func sta Usage:/root/rsync_func {start|stop|restart} [root@localhost ~]# /root/rsync_func Usage:/root/rsync_func {start|stop|restart}