码迷,mamicode.com
首页 > 系统相关 > 详细

linux自定义启动脚本,服务脚本

时间:2014-11-19 11:32:39      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:linux   start   status   启动脚本   

#!/bin/bash



case "$1" in

start)

echo "Starting yum_rsync daemon..."

/data/script/yum_rsync.sh

;;

stop)

echo "Stopping yum_rsync daemon..."

killall yum_rsync.sh

killall rsync

;;


restart)

echo "Restarting yum_rsync daemon..."

$0 stop

$0 start

;;


status)

ps -ef | grep rsync

;;


*)

echo "Usage: $0 {start|stop|restart|status}"

exit 1

;;

esac


本文出自 “XFICC” 博客,请务必保留此出处http://xficc.blog.51cto.com/1189288/1579364

linux自定义启动脚本,服务脚本

标签:linux   start   status   启动脚本   

原文地址:http://xficc.blog.51cto.com/1189288/1579364

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!