diff options
author | sjaz <sjaz@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-01-01 12:00:20 +0000 |
---|---|---|
committer | sjaz <sjaz@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-01-01 12:00:20 +0000 |
commit | c777c8d9aa7cd5c2e9a399727a7fa9985a77fb1c (patch) | |
tree | 9e996ae4a1bbb833cec036c5cd4d87a590149e85 /data/example.chk |
Anope Stable Branch
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@1902 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'data/example.chk')
-rw-r--r-- | data/example.chk | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/data/example.chk b/data/example.chk new file mode 100644 index 000000000..6f2a2343d --- /dev/null +++ b/data/example.chk @@ -0,0 +1,44 @@ +#!/bin/sh + +# Crontab script for Anope +# +# To know how to install the crontab, read the INSTALL file. + +############################################################### +# CONFIGURATION +############################################################### + +# Anope binary directory +ANOPATH=/home/ircd/services/ + +# Name of the pid file +ANOPIDF=services.pid + +# Name of the executable +ANOPROG=services + +# Parameters to pass to the executable +ANOARGS="" +#ANOARGS="-debug" + +############################################################### +# DON'T EDIT ANYTHING BELOW # +############################################################### + +PATH=/bin:/usr/bin:/usr/local/bin + +ANOPID= + +cd $ANOPATH + +if [ -f $ANOPIDF ] +then + ANOPID=`cat $ANOPIDF` + if [ `ps auwx | grep $ANOPROG | grep $ANOPID | grep -v -c grep` = 1 ] + then + exit + fi + rm -f $ANOPIDF +fi + +./$ANOPROG $ANOARGS |