]> git.llucax.com Git - z.facultad/75.08/llamadas.git/blobdiff - afinstal
Bye llamadaS
[z.facultad/75.08/llamadas.git] / afinstal
index 4792d781f3cbd2c2e28e3b4bef2a168dda3e8808..f759c3f8dfebb37bf5b22753f721a88365e81e29 100755 (executable)
--- a/afinstal
+++ b/afinstal
@@ -305,14 +305,14 @@ MARCA
        # 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 [ -w "${userpath%/*}" ]; then is_writeable=1
                        else echo ">> ERROR: No es posible crear dicho directorio"
                        fi
                else 
-                       ROOTPATH="$CURRDIR/grupoNN"
+                       ROOTPATH="$CURRDIR"
                        is_writible=1
                fi
        done
@@ -394,7 +394,7 @@ MARCA
        cp "$INSTDIR/$comando" "$BINDIR"
        chmod u+x "$BINDIR/$comando"
 
-       # Copio umbrales y oridesti una sola vez
+       # Copio umbrales, oridesti y utilities una sola vez
        if [ ! -f "$OWNCONFDIR/oridesti.txt" ]; then
                cp "$INSTDIR/oridesti.txt" "$OWNCONFDIR"
        fi
@@ -404,6 +404,9 @@ MARCA
        if [ ! -f "$OWNCONFDIR/umbrales.id" ]; then
                echo 0 >> "$OWNCONFDIR/umbrales.id"
        fi
+       if [ ! -f "$OWNCONFDIR/util.sh" ]; then
+               cp "$INSTDIR/util.sh" "$OWNCONFDIR"
+       fi
 
        # Guardo los datos en el archivo de configuracion
        ownconffile="$OWNCONFDIR/conf/${comando%.pl}.conf"
@@ -455,6 +458,7 @@ MARCA
        numline=$(($numline+1))
        changeLine "$CONFFILE" "$numline" "FECINS = $fecha"
        echo ">> Instalación del componente $comando completada"
+       echo ">> Presione ENTER para continuar"
        read
 done