summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrepoman/bin/opengnsys.cron15
-rw-r--r--server/etc/logrotate.tmpl24
2 files changed, 39 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
+
diff --git a/server/etc/logrotate.tmpl b/server/etc/logrotate.tmpl
new file mode 100644
index 00000000..0ed3259c
--- /dev/null
+++ b/server/etc/logrotate.tmpl
@@ -0,0 +1,24 @@
+# Los archivos se copian y luego se corta el original, para que los equipos puedan seguir escribiendo sobre ellos
+# Las copias se comprimen
+# Clientes: se guardan 500K de cada cliente: se rotan cuando llegan a 100K y se guardan 5
+# Mcastlog: se guardan dos semanas.
+# servicios opengnsys y tracker: se guardan 4 semanas
+
+
+copytruncate
+compress
+/opt/opengnsys/log/clients/*.log {
+ rotate 5
+ size 100k
+}
+
+/opt/opengnsys/log/mcastlog/ogAdmRepoMcast.* {
+ rotate 2
+ weekly
+}
+
+/opt/opengnsys/log/bttrack.log /opt/opengnsys/log/ogAdmRepo.log /opt/opengnsys/log/ogAdmServer.log {
+ rotate 4
+ weekly
+}
+