summaryrefslogtreecommitdiffstats
path: root/repoman
diff options
context:
space:
mode:
Diffstat (limited to 'repoman')
-rwxr-xr-xrepoman/bin/opengnsys.cron19
-rwxr-xr-xrepoman/bin/sendFileMcast12
2 files changed, 22 insertions, 9 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
+
diff --git a/repoman/bin/sendFileMcast b/repoman/bin/sendFileMcast
index 39f6a947..bf7091e0 100755
--- a/repoman/bin/sendFileMcast
+++ b/repoman/bin/sendFileMcast
@@ -23,18 +23,15 @@ if [ $# -ne 2 ]; then
exit 1
fi
-# Fichero de imagen (camino completo o nombre de imagen sin extensión).
+# Fichero a enviar (camino completo o relativo al directorio del repositorio).
FICH="$1"
if [ "${FICH:0:1}" != "/" ]; then
- for EXT in pgz img; do
- FICHIMG="$OGIMG/$FICH.$EXT"
- [ -r "$FICHIMG" ] && break
- done
+ FICHIMG="$OGIMG/$FICH"
else
FICHIMG="$FICH"
fi
if [ ! -f "$FICHIMG" ]; then
- echo "$PROG Error: Fichero \"$FICH\" no accesible"
+ echo "$PROG Error: Fichero \"$FICHIMG\" no accesible"
exit 2
fi
@@ -59,8 +56,5 @@ CERROR="8x8/128"
# Envío de fichero por Multicast.
which mbuffer &> /dev/null && MBUFFER="--pipe 'mbuffer -m 20M'"
-##### ADV v. 1.0 23/02/2011
-#version 0.10 # udp-sender $MBUFFER --portbase $PORTBASE --$METHOD --mcast-data-address $ADDRESS --fec $CERROR --max-bitrate $BITRATE --ttl 1 --min-clients $NCLIENTS --max-wait $MAXTIME --file "$FICHIMG"
$OGBIN/udp-sender $MBUFFER --nokbd --retries-until-drop 65 --portbase $PORTBASE --$METHOD --mcast-data-address $ADDRESS --fec $CERROR --max-bitrate $BITRATE --ttl 1 --min-clients $NCLIENTS --max-wait $MAXTIME --file "$FICHIMG"
-##### ADV v. 1.0 23/02/2011