From c5ffe89bb418b3d834799680b72c4c3e42528c1f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Nicol=C3=A1s=20Dimov?= Date: Mon, 4 Oct 2004 19:25:17 +0000 Subject: [PATCH] modificaciones recomendadas por luca, me falta resolver el tema de si ya hay algun componente instalado que haga el upgrade, asi qeu puede ser que la primera vez que lo corran no haga nada porque hay un if que esta mal y no entra nunca --- AFINSTAL | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/AFINSTAL b/AFINSTAL index 87ec7a2..bc11c8e 100755 --- a/AFINSTAL +++ b/AFINSTAL @@ -196,37 +196,37 @@ if [ -d "$PATH_GENERAL" ]; then fecha=$(date) for FILE in ANTIFRAUDE.PL AFICONF AFIMONIO do - numlinea=`expr $linea + $i` + numlinea=$(($linea+$i)) cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s/.*/Comando $FILE/" > "$CONFDIR/afinstal.conf" - i=`expr $i + 1` + i=$(($i+1)) numlinea=`expr $linea + $i` cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(BINDIR = $BINDIR(" > "$CONFDIR/afinstal.conf" - i=`expr $i + 1` + i=$(($i+1)) numlinea=`expr $linea + $i` cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(LOGDIR = $LOGDIR(" > "$CONFDIR/afinstal.conf" - i=`expr $i + 1` + i=$(($i+1)) numlinea=`expr $linea + $i` cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(LOGNAME = $LOGNAME(" > "$CONFDIR/afinstal.conf" - i=`expr $i + 1` + i=$(($i+1)) numlinea=`expr $linea + $i` cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(LOGSIZE = $LOGSIZE(" > "$CONFDIR/afinstal.conf" if [ "$FILE" == "ANTIFRAUDE.PL" ]; then - i=`expr $i + 1` + i=$(($i+1)) numlinea=`expr $linea + $i` cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(DATADIR = $DATADIR(" > "$CONFDIR/afinstal.conf" - i=`expr $i + 1` + i=$(($i+1)) numlinea=`expr $linea + $i` cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(DATASIZE = (" > "$CONFDIR/afinstal.conf" fi - i=`expr $i + 1` + i=$(($i+1)) numlinea=`expr $linea + $i` cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(USERID = $USER(" > "$CONFDIR/afinstal.conf" - i=`expr $i + 1` + i=$(($i+1)) numlinea=`expr $linea + $i` cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(FECINS = $fecha(" > "$CONFDIR/afinstal.conf" - + echo "i es igual a "$i i=0 - linea=`expr $linea + 10` + linea=$(($linea+10)) done #for fi #seleccion opcion fi #si esxiste la estructura de directorios.. FIXME si no existe, hay que crearlo -- 2.43.0