]> git.llucax.com Git - z.facultad/75.08/llamadas.git/blobdiff - afinstal
Se agrega código fuente, instalación y util.sh.
[z.facultad/75.08/llamadas.git] / afinstal
index 09a16cdaf5e648b2100d999ec78886d31706faa0..970057793a7aa4a733d6c2d566eab38bb03a8a14 100755 (executable)
--- a/afinstal
+++ b/afinstal
@@ -63,8 +63,13 @@ MARCA
 }
 
 # Modifica una linea dada de un archivo dado
 }
 
 # Modifica una linea dada de un archivo dado
+# Uso: nombre_archivo nro_linea nueva_linea
 function changeLine() {
 function changeLine() {
-       cat "$1" | sed "${2}s%.*%$3%" > "$1"
+       # Si no se puede crear archivos, muero
+       [ -w . ] || die "No se puede escribir en el directorio actual" 100
+       tmp="$0.$$.tmp"
+       sed "${2}s%.*%$3%" > "$tmp" < "$1"
+       mv "$tmp" "$1"
 }
 
 # Mensaje generico de abort
 }
 
 # Mensaje generico de abort
@@ -86,7 +91,7 @@ MARCA
                echo "*  Aficonf instalado el $fechaconf por $userconf"
        fi
        if [ "$havemonio" -eq 1 ]; then
                echo "*  Aficonf instalado el $fechaconf por $userconf"
        fi
        if [ "$havemonio" -eq 1 ]; then
-               echo "*  Afimonio instalado el $fechaconf por $usermonio"
+               echo "*  Afimonio instalado el $fechamonio por $usermonio"
        fi
 cat <<MARCA
 *
        fi
 cat <<MARCA
 *
@@ -134,7 +139,7 @@ MARCA
                                echo
                                echo "Se instalará [$selected]"
 
                                echo
                                echo "Se instalará [$selected]"
 
-                               preguntar "¿Desea agregar otro componente para instalar?" "SsNn" key
+                               preguntar "¿Desea agregar otro componente para instalar (S)?" SsNn key S
                                if [ "$key" = "s" ]; then
                                        key="S"
                                fi
                                if [ "$key" = "s" ]; then
                                        key="S"
                                fi
@@ -155,6 +160,23 @@ MARCA
 read key
 }
 
 read key
 }
 
+# Ofrece arrancar el afimonio si es posible
+function askDaemon {
+       if [ "$havemonio" -eq 1 ] && [ "$havefraude" -eq 1 ]; then
+               echo "Desea efectuar la activacion del demonio antifraude?"
+               echo "Si desea arrancar el proceso oprima solamente ENTER, de lo contrario oprima cualquier otra tecla y luego ENTER."
+               read choice
+               monbin=`grep -n "Comando" "$CONFFILE" | grep '^30' | sed s%.*Comando.%%`
+               mondir=`grep -n "BINDIR" "$CONFFILE" | grep '^31' | sed 's%.*= %%'`
+               if [ -z "$choice" ]; then
+                       $mondir/afimonio_daemon.sh start
+               else
+                       echo "Para realizar la activacion del demonio, tipee en linea de comando: '$mondir/afimonio_daemon.sh start'"
+               fi
+               echo
+       fi
+}
+
 ################### MAIN SCRIPT CODE ###################
 clear
 SISOPTP=$(uname)
 ################### MAIN SCRIPT CODE ###################
 clear
 SISOPTP=$(uname)
@@ -207,35 +229,35 @@ done
 # [STEP3] Chequeamos si hay componentes ya instalados
 if [ -f "$CONFFILE" ] && [ -s "$CONFFILE" ]; then
        #Busco los nombres de los binarios
 # [STEP3] Chequeamos si hay componentes ya instalados
 if [ -f "$CONFFILE" ] && [ -s "$CONFFILE" ]; then
        #Busco los nombres de los binarios
-       binfraude=`grep -n "Comando" "$CONFFILE" | grep 10 | sed s%.*Comando.%%`
-       binconf=`grep -n "Comando" "$CONFFILE" | grep 20 | sed s%.*Comando.%%`
-       binmonio=`grep -n "Comando" "$CONFFILE" | grep 30 | sed s%.*Comando.%%`
+       binfraude=`grep -n "Comando" "$CONFFILE" | grep '^10' | sed s%.*Comando.%%`
+       binconf=`grep -n "Comando" "$CONFFILE" | grep '^20' | sed s%.*Comando.%%`
+       binmonio=`grep -n "Comando" "$CONFFILE" | grep '^30' | sed s%.*Comando.%%`
        #Busco donde deberian estar instalados
        #Busco donde deberian estar instalados
-       dirfraude=`grep -n "BINDIR" "$CONFFILE" | grep 11 | sed 's%.*= %%'`
-       dirconf=`grep -n "BINDIR" "$CONFFILE" | grep 21 | sed 's%.*= %%'`
-       dirmonio=`grep -n "BINDIR" "$CONFFILE" | grep 31 | sed 's%.*= %%'`
+       dirfraude=`grep -n "BINDIR" "$CONFFILE" | grep '^11' | sed 's%.*= %%'`
+       dirconf=`grep -n "BINDIR" "$CONFFILE" | grep '^21' | sed 's%.*= %%'`
+       dirmonio=`grep -n "BINDIR" "$CONFFILE" | grep '^31' | sed 's%.*= %%'`
        # Verifico finalmente si esta alli el archivo, en caso negativo, habilito
        # la posibilidad de instalar ese componente
        if [ ! -f "${dirmonio}/$binmonio" ]; then
                choices="AFIMONIO"
        else
                havemonio=1
        # Verifico finalmente si esta alli el archivo, en caso negativo, habilito
        # la posibilidad de instalar ese componente
        if [ ! -f "${dirmonio}/$binmonio" ]; then
                choices="AFIMONIO"
        else
                havemonio=1
-               usermonio=`grep -n "USERID" "$CONFFILE" | grep 35 | sed 's%.*= %%'`
-               fechamonio=`grep -n "FECINS" "$CONFFILE" | grep 36 | sed 's%.*= %%'`
+               usermonio=`grep -n "USERID" "$CONFFILE" | grep '^35' | sed 's%.*= %%'`
+               fechamonio=`grep -n "FECINS" "$CONFFILE" | grep '^36' | sed 's%.*= %%'`
        fi
        if [ ! -f "${dirconf}/$binconf" ]; then
                choices="${choices} AFICONF"
        else
                haveconf=1
        fi
        if [ ! -f "${dirconf}/$binconf" ]; then
                choices="${choices} AFICONF"
        else
                haveconf=1
-               userconf=`grep -n "USERID" "$CONFFILE" | grep 25 | sed 's%.*= %%'`
-               fechaconf=`grep -n "FECINS" "$CONFFILE" | grep 26 | sed 's%.*= %%'`
+               userconf=`grep -n "USERID" "$CONFFILE" | grep '^25' | sed 's%.*= %%'`
+               fechaconf=`grep -n "FECINS" "$CONFFILE" | grep '^26' | sed 's%.*= %%'`
        fi
        if [ ! -f "${dirfraude}/$binfraude" ]; then
                choices="${choices} ANTIFRAUDE"
        else
                havefraude=1
        fi
        if [ ! -f "${dirfraude}/$binfraude" ]; then
                choices="${choices} ANTIFRAUDE"
        else
                havefraude=1
-               userfraude=`grep -n "USERID" "$CONFFILE" | grep 17 | sed 's%.*= %%'`
-               fechafraude=`grep -n "FECINS" "$CONFFILE" | grep 18 | sed 's%.*= %%'`
+               userfraude=`grep -n "USERID" "$CONFFILE" | grep '^17' | sed 's%.*= %%'`
+               fechafraude=`grep -n "FECINS" "$CONFFILE" | grep '^18' | sed 's%.*= %%'`
        fi
        choices=${choices% }
        choices=${choices# }
        fi
        choices=${choices% }
        choices=${choices# }
@@ -246,6 +268,7 @@ fi
 # [STEP4] Seleecion de los componentes a instalar
 # TODO: tener en cuenta los que ya estan y no permitir elegirlos
 if [ -z "$choices" ]; then
 # [STEP4] Seleecion de los componentes a instalar
 # TODO: tener en cuenta los que ya estan y no permitir elegirlos
 if [ -z "$choices" ]; then
+       askDaemon
        showInstalled
        abortMessage
        exit 0
        showInstalled
        abortMessage
        exit 0
@@ -305,14 +328,14 @@ MARCA
        # Le pido un rootpath donde se instalara este comando en particular
        is_writeable=0
        while [ $is_writeable -eq 0 ]; do
        # Le pido un rootpath donde se instalara este comando en particular
        is_writeable=0
        while [ $is_writeable -eq 0 ]; do
-               leer ">> Ingrese la ruta de instalación" "$CURRDIR/grupoNN" userpath
+               leer ">> Ingrese la ruta de instalación" "$CURRDIR" userpath
                if [ -n "$userpath" ]; then
                        ROOTPATH=$userpath
                if [ -n "$userpath" ]; then
                        ROOTPATH=$userpath
-                       if [ -w "${userpath%/*}" ]; then is_writeable=1
+                       if [ -w "${userpath%/*}/" ]; then is_writeable=1
                        else echo ">> ERROR: No es posible crear dicho directorio"
                        fi
                else 
                        else echo ">> ERROR: No es posible crear dicho directorio"
                        fi
                else 
-                       ROOTPATH="$CURRDIR/grupoNN"
+                       ROOTPATH="$CURRDIR"
                        is_writible=1
                fi
        done
                        is_writible=1
                fi
        done
@@ -389,20 +412,26 @@ MARCA
                mkdir -p "$DATADIR"
                mkdir -p "$DATADIR"/{aprocesar,enproceso,rechazadas,procesadas}
                mkdir -p "$DATADIR/alarmas"
                mkdir -p "$DATADIR"
                mkdir -p "$DATADIR"/{aprocesar,enproceso,rechazadas,procesadas}
                mkdir -p "$DATADIR/alarmas"
+               # Aprovecho para copiar las llamadas en este bloque
+               tar -xzf "$INSTDIR/testcalls.tar.gz" -C "$DATADIR/aprocesar"
        fi
        echo ">> Moviendo Archivos....."
        cp "$INSTDIR/$comando" "$BINDIR"
        chmod u+x "$BINDIR/$comando"
        fi
        echo ">> Moviendo Archivos....."
        cp "$INSTDIR/$comando" "$BINDIR"
        chmod u+x "$BINDIR/$comando"
+       if [ "$comando" = "afimonio" ]; then
+               cp "$INSTDIR/afimonio_daemon.sh" "$BINDIR"
+               chmod u+x "$BINDIR/afimonio_daemon.sh"
+       fi
 
        # Copio umbrales, oridesti y utilities una sola vez
        if [ ! -f "$OWNCONFDIR/oridesti.txt" ]; then
 
        # Copio umbrales, oridesti y utilities una sola vez
        if [ ! -f "$OWNCONFDIR/oridesti.txt" ]; then
-               cp "$INSTDIR/oridesti.txt" "$OWNCONFDIR"
+               cp "$CONFDIR/oridesti.txt" "$OWNCONFDIR"
        fi
        if [ ! -f "$OWNCONFDIR/umbrales.param" ]; then
        fi
        if [ ! -f "$OWNCONFDIR/umbrales.param" ]; then
-               cp "$INSTDIR/umbrales.param" "$OWNCONFDIR"
+               cp "$CONFDIR/umbrales.param" "$OWNCONFDIR"
        fi
        if [ ! -f "$OWNCONFDIR/umbrales.id" ]; then
        fi
        if [ ! -f "$OWNCONFDIR/umbrales.id" ]; then
-               echo 0 >> "$OWNCONFDIR/umbrales.id"
+               cp "$CONFDIR/umbrales.id" "$OWNCONFDIR"
        fi
        if [ ! -f "$OWNCONFDIR/util.sh" ]; then
                cp "$INSTDIR/util.sh" "$OWNCONFDIR"
        fi
        if [ ! -f "$OWNCONFDIR/util.sh" ]; then
                cp "$INSTDIR/util.sh" "$OWNCONFDIR"
@@ -444,8 +473,8 @@ MARCA
        changeLine "$CONFFILE" "$numline" "LOGFILE = $LOGFILE"
        echo "${prefix}_LOGFILE=\"$LOGFILE\"" >> $ownconffile
        numline=$(($numline+1))
        changeLine "$CONFFILE" "$numline" "LOGFILE = $LOGFILE"
        echo "${prefix}_LOGFILE=\"$LOGFILE\"" >> $ownconffile
        numline=$(($numline+1))
-       changeLine "$CONFFILE" "$numline" "LOGSIZE = $LOGSIZE"
-       echo "${prefix}_LOGSIZE=$LOGSIZE" >> $ownconffile
+       changeLine "$CONFFILE" "$numline" "LOGSIZE = "$(($LOGSIZE*1024*1024))
+       echo "${prefix}_LOGSIZE=$(($LOGSIZE*1024*1024))" >> $ownconffile
        numline=$(($numline+1))
        if [ "$comando" = "antifraude.pl" ]; then
                changeLine "$CONFFILE" "$numline" "DATADIR = $DATADIR"
        numline=$(($numline+1))
        if [ "$comando" = "antifraude.pl" ]; then
                changeLine "$CONFFILE" "$numline" "DATADIR = $DATADIR"
@@ -458,10 +487,12 @@ MARCA
        numline=$(($numline+1))
        changeLine "$CONFFILE" "$numline" "FECINS = $fecha"
        echo ">> Instalación del componente $comando completada"
        numline=$(($numline+1))
        changeLine "$CONFFILE" "$numline" "FECINS = $fecha"
        echo ">> Instalación del componente $comando completada"
+       echo ">> Presione ENTER para continuar"
        read
 done
 
 # [STEP6] Ofrecer arrancar el Afimonio si estan los tres paquetes instalados
        read
 done
 
 # [STEP6] Ofrecer arrancar el Afimonio si estan los tres paquetes instalados
+askDaemon
 
 # [STEP7] Mostrar en un recuadro que se encuentra instalado en el sistema
 showInstalled
 
 # [STEP7] Mostrar en un recuadro que se encuentra instalado en el sistema
 showInstalled