X-Git-Url: https://git.llucax.com/z.facultad/75.08/llamadas.git/blobdiff_plain/e8b4d7a8dd85f77d46fcd0d9388ca8e5a4b970d2..bfe87f09077134e3d4883eb2755847509b0aa2a1:/afinstal?ds=sidebyside diff --git a/afinstal b/afinstal index 09a16cd..10b8dca 100755 --- a/afinstal +++ b/afinstal @@ -63,8 +63,13 @@ MARCA } # Modifica una linea dada de un archivo dado +# Uso: nombre_archivo nro_linea nueva_linea 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 @@ -86,7 +91,7 @@ MARCA 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 <> 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 @@ -393,6 +416,10 @@ MARCA 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 @@ -458,10 +485,12 @@ MARCA 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 +askDaemon # [STEP7] Mostrar en un recuadro que se encuentra instalado en el sistema showInstalled