view src/sat.sh @ 247:53aa958a2d3d 0.1.1 SàT v0.1.1

CHANGELOG update
author Goffi <goffi@goffi.org>
date Fri, 14 Jan 2011 15:23:25 +0100
parents a7079e835432
children 0ed5553b5313
line wrap: on
line source

#!/bin/sh

#if there is one argument which is "stop", then we kill SàT
if [ $# -eq 1 ];then
	if [ $1 = "stop" ];then
		echo "Terminating Salut à Toi"
		pkill -f "twistd.*sat/sat.tac"
		exit 0
	fi
fi

NAME='sat'

PID_FILE="/tmp/$NAME.pid"
LOG_FILE=~/".$NAME/$NAME.log"
DAEMON="n"
MAIN_OPTIONS="-${DAEMON}oy"
TAP_PATH="./"
TAP_FILE="$NAME.tac"

#Don't change the next line
AUTO_OPTIONS=""
ADDITIONAL_OPTIONS="--pidfile $PID_FILE --logfile $LOG_FILE $AUTO_OPTIONS"

log_dir=`dirname "$LOG_FILE"`
if [ ! -d $log_dir ] ; then
	mkdir $log_dir
fi

twistd $MAIN_OPTIONS $TAP_PATH$TAP_FILE $ADDITIONAL_OPTIONS