view Templates/rc @ 624:608de07347ff

templates: add minimal.sh
author David Demelier <markand@malikania.fr>
date Tue, 23 Jul 2019 21:14:00 +0200
parents 80faeb51a8f7
children 657ee4987f4d
line wrap: on
line source

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

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

: ${TEMPLATE_CMD:=/bin/template}
: ${TEMPLATE_ARGS:=--foo}
: ${TEMPLATE_PID:=/var/run/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