summaryrefslogtreecommitdiffstats
path: root/repoman/bin/opengnsys.cron
blob: b8b50a1d9c3a328eb950b08de5a0026297911e40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Comprobamos si los servicios de opengnsys están levantado y si no es así los iniciamos.
# Variables.
OPENGNSYS=${OPENGNSYS:-"/opt/opengnsys"}
LOGDIR="$OPENGNSYS/log"


if ! $(pgrep ogAdmServer >> /dev/null); then
	date +"%d/%m/%Y %T ERROR: El servicio ogAdmServer  estaba caido, se reinicia" >> $LOGDIR/ogAdmServer.log
	/etc/init.d/opengnsys restart
fi
if ! $(pgrep ogAdmRepo >> /dev/null); then
	date +"%d/%m/%Y %T ERROR: El servicio opAdmRepo  estaba caido, se reinicia" >> $LOGDIR/ogAdmRepo.log
	/etc/init.d/opengnsys restart
fi