X-Git-Url: https://git.llucax.com/z.facultad/75.08/llamadas.git/blobdiff_plain/bfe87f09077134e3d4883eb2755847509b0aa2a1..8924bf6b7d40b1b543706926d806e4104db61393:/afinstal diff --git a/afinstal b/afinstal index 10b8dca..9700577 100755 --- a/afinstal +++ b/afinstal @@ -171,7 +171,7 @@ function askDaemon { 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 @@ -331,7 +331,7 @@ MARCA 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 @@ -412,6 +412,8 @@ MARCA 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" @@ -423,13 +425,13 @@ MARCA # 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 - cp "$INSTDIR/umbrales.param" "$OWNCONFDIR" + cp "$CONFDIR/umbrales.param" "$OWNCONFDIR" 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" @@ -471,8 +473,8 @@ MARCA 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"