]> 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 cac5efb20668c394abfc3d3d3d7eed27b429600b..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
@@ -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
@@ -166,7 +171,7 @@ function askDaemon {
                if [ -z "$choice" ]; then
                        $mondir/afimonio_daemon.sh start
                else
                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"
+                       echo "Para realizar la activacion del demonio, tipee en linea de comando: '$mondir/afimonio_daemon.sh start'"
                fi
                echo
        fi
                fi
                echo
        fi
@@ -326,7 +331,7 @@ MARCA
                leer ">> Ingrese la ruta de instalación" "$CURRDIR" userpath
                if [ -n "$userpath" ]; then
                        ROOTPATH=$userpath
                leer ">> Ingrese la ruta de instalación" "$CURRDIR" 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 
@@ -407,6 +412,8 @@ 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"
        fi
        echo ">> Moviendo Archivos....."
        cp "$INSTDIR/$comando" "$BINDIR"
@@ -418,13 +425,13 @@ MARCA
 
        # 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"
@@ -466,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"