summaryrefslogtreecommitdiffstats
path: root/admin/Sources/Services/ogAdmRepoAux
diff options
context:
space:
mode:
Diffstat (limited to 'admin/Sources/Services/ogAdmRepoAux')
-rwxr-xr-xadmin/Sources/Services/ogAdmRepoAux25
1 files changed, 12 insertions, 13 deletions
diff --git a/admin/Sources/Services/ogAdmRepoAux b/admin/Sources/Services/ogAdmRepoAux
index a0c26baa..4ab3b634 100755
--- a/admin/Sources/Services/ogAdmRepoAux
+++ b/admin/Sources/Services/ogAdmRepoAux
@@ -1,26 +1,25 @@
#!/bin/bash
PARM=`cat`
+BASEDIR=/opt/opengnsys
+REPONAME=ogAdmRepo
+REPOLOG=$BASEDIR/log/$REPONAME.log
+
PARM1=$(echo $PARM | cut -f1 -d" ")
PARM2=$(echo $PARM | cut -f2 -d" ")
PARM3=$(echo $PARM | cut -f3 -d" ")
PARM4=$(echo $PARM | cut -f4 -d" ")
-echo $PARM
-echo $PARM1
-echo $PARM2
-echo $PARM3
-echo $PARM4
case $PARM1 in
START_MULTICAST)
- #1 START_MULTICAST
- #2 fichero a enviar
- FILE=/opt/opengnsys/images$PARM2
- MCASTOPT=$PARM3
- #3 opciones protocolo multicast
- echo "/opt/opengnsys/bin/sendFileMcast $FILE $MCASTOPT"
- /opt/opengnsys/bin/sendFileMcast $FILE $MCASTOPT
+ #1 START_MULTICAST
+ #2 fichero a enviar
+ #3 opciones de multicast
+ FILE=/opt/opengnsys/images$PARM2
+ MCASTOPT=$PARM3
+ echo "/opt/opengnsys/bin/sendFileMcast $FILE $MCASTOPT" >> $REPOLOG
+ /opt/opengnsys/bin/sendFileMcast $FILE $MCASTOPT >> $REPOLOG
;;
-esac \ No newline at end of file
+esac \ No newline at end of file