summaryrefslogtreecommitdiffstats
path: root/repoman
diff options
context:
space:
mode:
Diffstat (limited to 'repoman')
-rwxr-xr-xrepoman/bin/opengnsys.cron15
1 files changed, 15 insertions, 0 deletions
diff --git a/repoman/bin/opengnsys.cron b/repoman/bin/opengnsys.cron
new file mode 100755
index 00000000..b8b50a1d
--- /dev/null
+++ b/repoman/bin/opengnsys.cron
@@ -0,0 +1,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
+