码迷,mamicode.com
首页 > 其他好文 > 详细

设置自己的服务为自动重启

时间:2019-01-17 11:37:54      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:自己的   status   服务   cti   lse   res   init.d   fun   restart   

#!/bin/bash

description: testsrv

chkconfig: - 99 1

. /etc/init.d/functions
SCRIPT_NAME=testsrv
start(){
if [ -f /var/lock/subsys/$SCRIPT_NAME ];then
action " starting testsrv: "
else
touch /var/lock/subsys/$SCRIPT_NAME
action " starting testsrv: "
fi
}
stop(){
if [ -f /var/lock/subsys/$SCRIPT_NAME ];then
rm -rf /var/lock/subsys/$SCRIPT_NAME
action " stoping testsrv: " false
else
action " stoping testsrv: " false

       fi

}
case $1 in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
status)
if [ -f /var/lock/subsys/$SCRIPT_NAME ];then
echo $SCRIPT_NAME is starting
else
echo $SCRIPT_NAME is stoping
fi
;;
*)
echo service testsrv {start|stop|restart}
esac

设置自己的服务为自动重启

标签:自己的   status   服务   cti   lse   res   init.d   fun   restart   

原文地址:http://blog.51cto.com/14114496/2343680

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