view templates/rc @ 232:ca437024113d

x11/libxtst: initial import, closes #1329
author David Demelier <markand@malikania.fr>
date Wed, 20 Mar 2019 21:55:00 +0100
parents 36ef2cc4fafa
children
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 $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