summaryrefslogtreecommitdiffstats
path: root/repoman/bin/opengnsys.cron
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2011-12-22 13:38:11 +0000
committerramon <ramongomez@us.es>2011-12-22 13:38:11 +0000
commitc3c7cb3ae6f6600223111a572050f34f2df6fa71 (patch)
tree96fce1db6bf64fee2845d3a48abcbe07d9937562 /repoman/bin/opengnsys.cron
parent4caea352de0d0a19d4e0a2e2dd04980dd28e6be0 (diff)
Congelar versión 1.0.2 en tags/opengnsys-1.0.2 (modifica #446).opengnsys-1.0.2
git-svn-id: https://opengnsys.es/svn/tags/opengnsys-1.0.2@2405 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'repoman/bin/opengnsys.cron')
-rwxr-xr-xrepoman/bin/opengnsys.cron19
1 files changed, 19 insertions, 0 deletions
diff --git a/repoman/bin/opengnsys.cron b/repoman/bin/opengnsys.cron
new file mode 100755
index 00000000..55022ef1
--- /dev/null
+++ b/repoman/bin/opengnsys.cron
@@ -0,0 +1,19 @@
+# Comprobamos si los servicios de opengnsys están levantado y si no es así los iniciamos.
+# Variables.
+OPENGNSYS=${OPENGNSYS:-"/opt/opengnsys"}
+LOGDIR="$OPENGNSYS/log"
+DEFAULTFILE=/etc/default/opengnsys
+
+# Comprobar servicios que deben estar activos.
+[ -f $DEFAULTFILE ] && source $DEFAULTFILE
+
+# Si un servicio debe estar activo y no se está ejecutando, reiniciar OpenGnSys.
+if [ "$RUN_OGADMSERVER" == "yes" -a $(pgrep -c ogAdmServer) == 0 ]; then
+ date +"%d/%m/%Y %T ERROR: El servicio ogAdmServer estaba caido, se reinicia" >> $LOGDIR/ogAdmServer.log
+ /etc/init.d/opengnsys restart
+fi
+if [ "$RUN_OGADMREPO" == "yes" -a $(pgrep -c ogAdmRepo) == 0 ]; then
+ date +"%d/%m/%Y %T ERROR: El servicio ogAdmRepo estaba caido, se reinicia" >> $LOGDIR/ogAdmRepo.log
+ /etc/init.d/opengnsys restart
+fi
+