summaryrefslogtreecommitdiff
path: root/data/cron.example.sh
blob: e71928f1c94b343f6eff2be896276d40d2de2114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/sh

# Crontab script for Anope
#
# To know how to install the crontab, read the INSTALL file.

###############################################################
# CONFIGURATION
###############################################################

# Anope binary directory
ANOPATH=/home/ircd/anope/bin

# Anope data directory
ANODATA=/home/ircd/anope/data

# Name of the pid file
ANOPIDF=anope.pid

# Name of the executable
ANOPROG=anope

# 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 "$ANODATA/$ANOPIDF" ]
then
	ANOPID=`cat "$ANODATA/$ANOPIDF"`
	kill -0 $ANOPID 2>/dev/null
	if [ $? -eq 0 ]
	then
		exit
	fi
	rm -f "$ANODATA/$ANOPIDF"
fi

./$ANOPROG $ANOARGS