服务脚本

Posted dissipate

tags:

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

#!/bin/env sh

program=`basename $0|awk -F. ‘{print $1}‘`
lock=/var/lock/subsys/$program
source /etc/rc.d/init.d/functions

function start(){
	if [ -e $lock ];then
		echo "$program is already running" && return 2
	else
		touch $lock && action "$program started" /bin/true && return 0
	fi
}

function stop(){
	if [ ! -e $lock ];then
		action "$program is not running" /bin/false && return 3
	else
		rm -f $lock && action "$program stopped" /bin/true && return 0
	fi
}

function status(){
	if [ ! -e $lock ];then
		action "$program is not running" /bin/false && return 0
	else
		action "$program is running" /bin/true && return 0
	fi
}

function usage(){
	action "usage:$program start|stop|status|restart" /bin/false && return 6
}

if [ $# -ne 1 ];then
	usage
	exit 5
fi

case $1 in
start)
	start
	;;
stop)
	stop
	;;
status)
	status
	;;
restart)
	stop
	start
	;;
*)	
	usage
	;;
esac
	

  

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

代码片段:Shell脚本实现重复执行和多进程

html 将以编程方式附加外部脚本文件的javascript代码片段,并按顺序排列。用于响应式网站,其中ma

;~ 小部分AutoHotkey源代码片段测试模板2019年10月9日.ahk

如何在 Toad for Oracle 中使用自定义代码片段?

JSP 语法

Eclipse 中的通用代码片段或模板