From eff1b8a7c206aad7d77fa64da510f2dc2495226b Mon Sep 17 00:00:00 2001 From: yvesf Date: Sun, 13 Dec 2009 08:50:22 +0000 Subject: blablabla git-svn-id: http://xapek.org/svn/common/omegle@1485 d0e8fea9-7529-0410-93fb-d39fd5b9c1dd --- twistd.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 twistd.sh (limited to 'twistd.sh') diff --git a/twistd.sh b/twistd.sh new file mode 100755 index 0000000..0247476 --- /dev/null +++ b/twistd.sh @@ -0,0 +1,21 @@ +#!/bin/sh +export PATH=$PATH:~/svn/trunk/bin +export PYTHONPATH=~/svn/trunk + +action=$1 +shift 1 +case $action in + start) + name=$1 + shift 1 + twistd -y $name.tac --pidfile $name.pid --logfile $name.log $* + ;; + stop) + name=$1 + shift 1 + kill `cat $name.pid` + ;; + *) + echo "twistd.sh [start|stop] NAME" + ;; +esac -- cgit v1.2.1