crontab.tcl

crontab.tcl

TCL snippet that checks the crontab

Postat de Copyright Categorie Review user Vizualizari Data
btc necunoscut chanops Cod testat 551 2023-12-25 12:55:33

#! /bin/sh
###################
# Crontab Eggdrop #
###################
#
# Exemple d'utilisation
#    0,10,20,30,40,50 * * * *   /home/votre-compte/eggdrop/scripts/botchk >/dev/null 2>&1
#
# Adresse de l'installation
botdir="/home/votre-compte/eggdrop"
# Nom du fichier de config
botconf="eggdrop.conf"
# Nom de l'executable
botexe="eggdrop"
# Nom du pid
botpid="pid.Eggy"
###################

cd $botdir

if [ -f $botpid ]
then
	pid=`cat $botpid`
	if [ `ps -p $pid | wc -l` -eq 2 ]
	then
		exit
	fi
	rm -rf $botpid
fi

./$botexe $botconf

exit 0