view Templates/rc @ 383:14a4624d6fc1

vanilla: added tag 0.1.0 for changeset ebca5f1df2e4
author David Demelier <markand@malikania.fr>
date Mon, 01 Apr 2019 13:14:01 +0200
parents 7b000befead5
children 35eeda73d259
line wrap: on
line source

#!/bin/sh
#
# /etc/rc.d/template: run control script for template

if [ -f /etc/rc.conf ]; then
	source /etc/rc.conf
fi

: ${TEMPLATE_CMD:=/usr/sbin/template}
: ${TEMPLATE_ARGS:=--foo}
: ${TEMPLATE_PID:=/var/run/template/template.pid}

template_start()
{
	echo "Starting template: $TEMPLATE_CMD $TEMPLATE_ARGS"
	$TEMPLATE_CMD $TEMPLATE_ARGS -p $TEMPLATE_PID
}

template_status()
{
	if [ -s $TEMPLATE_PID ]; then
		echo "template is running with pid: `cat $TEMPLATE_PID`"
	else
		echo "template is not running"
	fi
}

template_stop()
{
	if [ -s $TEMPLATE_PID ]; then
		echo "Stopping template."
		kill -QUIT `cat $TEMPLATE_PID`
	fi
}

template_restart()
{
	template_stop
	sleep 3
	template_start
}

case $1 in
start)
	template_start
	;;
status)
	template_status
	;;
stop)
	template_stop
	;;
restart)
	template_restart
	;;
*)
	echo "usage: $(basename $0) restart|start|status|stop"
	;;
esac