]> git.llucax.com Git - z.facultad/75.08/llamadas.git/commitdiff
Chau old stuff
authorAlan Kennedy <kennedya@3dgames.com.ar>
Sun, 24 Oct 2004 23:13:02 +0000 (23:13 +0000)
committerAlan Kennedy <kennedya@3dgames.com.ar>
Sun, 24 Oct 2004 23:13:02 +0000 (23:13 +0000)
deprecated/2AFINSTAL [deleted file]
deprecated/AFINSTAL [deleted file]

diff --git a/deprecated/2AFINSTAL b/deprecated/2AFINSTAL
deleted file mode 100755 (executable)
index e92848c..0000000
+++ /dev/null
@@ -1,329 +0,0 @@
-#!/bin/bash 
-# vim: set softtabstop=4 tabstop=4 
-
-#FUNCIONES AUXILIARES 
-
-# devuelve 0 si la ruta fue cambiada 
-# y 1 si quedo por defecto
-function cambiaruta {
-       echo ""
-       echo "Nombre del directorio $1 es: ($2)"
-       echo "Si desea modificarlo ingrese la ruta completa deseada y luego presione ENTER"
-       echo "de lo contrario presione ENTER."
-       echo ""
-       read DIRSELECTED
-       if [ -n "$DIRSELECTED" ]; then
-               return 0
-       else 
-               return 1
-       fi
-}
-
-#Verifico que el sistema operativo sea correcto.
-if echo $0 | egrep -q 'AFINSTAL$'; then
-       SISOPTP="Linux"
-fi
-if echo $0 | egrep -q 'AFINSTAM$'; then
-       SISOPTP="Mac"
-fi
-if echo $0 | egrep -q 'AFINSTAW$'; then
-       SISOPTP="Windows"
-fi
-
-CURSIS=$(uname)
-
-# comienzo instalacion si el sistema es correcto
-if [ "$SISOPTP" != "$CURSIS" ]; then
-cat<<MARCA
-"ERROR !!!"
-"Este proceso de instalación es para $SISOPTP"
-"y su sistema operativo es $CURSIS"
-"Solicite a su proveedor la versión adecuada"
-"e inicie nuevamente el proceso de instalación"
-MARCA
-exit 1
-else
-       echo "Proceso de instalación para $SISOPTP"
-       echo "Presione una tecla para continuar"
-       read op
-fi
-
-
-#Verifico si hay algo instalado 
-#busco en el archivo afinstal.conf (desde donde???) por ahora desde el home
-
-afinstal=`find $HOME -name 'afinstal.conf'`
-
-if [ -n "$afinstal" ]; then #habia algo instalado
-       #busco paquetes instalados. Leo afinstal.conf para ver que hay
-       #como el archivo existe, tiene que tener alguna info almacenada..
-       instdir=`cat $afinstal | grep -n INSTDIR | grep 1 | sed s/\.\*\=\ //`
-       confdir=`cat $afinstal | grep -n CONFDIR | grep 2 | sed s/\.\*\=\ //`
-       #Busco los binarios
-       comp=0
-       anti=0
-       afic=0
-       afim=0  
-       bindir=`cat $afinstal | grep -n  BINDIR | grep 11 | sed s/\.\*\=\ //`
-       logdir=`cat $afinstal | grep -n  LOGDIR | grep 12 | sed s/\.\*\=\ //`
-       logname=`cat $afinstal | grep -n LOGNAME | grep 13 | sed s/\.\*\=\ //`
-       logsize=`cat $afinstal | grep -n  BINDIR | grep 14 | sed s/\.\*\=\ //`
-
-       # Si habia algo instalado, la informacion del los directorios quedo
-       # almacenada, pues es igual para todos los scripts. Excepto el directorio de
-       # datos para antifraude.
-       
-       if [ ! -f "$bindir""antifraude.pl" ]; then
-               #instalo antifraude porque no existe
-               echo "Instalando Antifraude..."
-               anti=1
-               cp "$instdir/antifraude.pl" "$bindir/antifraude.pl"
-       fi
-       if [ ! -f "$bindir""aficonf" ]; then
-               #instalo aficonf porque no existe
-               echo "Instalando Aficonf..."
-               afic=1
-       cp "$instdir/aficonf" "$bindir/aficonf"
-       fi
-       if [ ! -f "$bindir""afimonio" ]; then
-               #instalo afimonio porque no existe
-               echo "Instalando Afimonio..."
-               afim=1
-               cp "$instdir/afimonio" "$bindir/afimonio"
-       fi
-       #hay que loguear lo que se instalo
-       comp=$(($anti + $afic + $afim))
-       if [ $anti != 0 ]; then
-               echo "Ingrese la ruta completa para el directorio de datos"
-               read datadir
-               while [ ! -d "$datadir" ]; do
-                       echo "La ruta especificada no existe, ingrese un directorio existente"
-                       read datadir
-               done
-               echo "Ingrese tamaño máximo de datos"
-               read datasize
-               fecha=$(date)
-               cat "$confdir/afinstal.conf" | sed "10s/.*/Comando antifraude.pl/" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "11s(.*(BINDIR = $bindir(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "12s(.*(LOGDIR = $logdir(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "13s(.*(LOGNAME = $logname(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "14s(.*(LOGSIZE = $logsize(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "15s(.*(DATADIR = $datadir(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "16s(.*(DATASIZE = $datasize(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "17s(.*(USERID = $USER(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "18s(.*(FECINS = $fecha(" > "$confdir/afinstal.conf"
-       fi
-       if [ $afic != 0 ]; then
-               fecha=$(date)
-               cat "$confdir/afinstal.conf" | sed "20s/.*/Comando aficonf/" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "21s(.*(BINDIR = $bindir(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "22s(.*(LOGDIR = $logdir(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "23s(.*(LOGNAME = $logname(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "24s(.*(LOGSIZE = $logsize(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "25s(.*(USERID = $USER(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "26s(.*(FECINS = $fecha(" > "$confdir/afinstal.conf"
-       fi
-       if [ $afim != 0 ]; then
-               fecha=$(date)
-               cat "$confdir/afinstal.conf" | sed "30s/.*/Comando afimonio/" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "31s(.*(BINDIR = $bindir(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "32s(.*(LOGDIR = $logdir(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "33s(.*(LOGNAME = $logname(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "34s(.*(LOGSIZE = $logsize(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "35s(.*(USERID = $USER(" > "$confdir/afinstal.conf"
-               cat "$confdir/afinstal.conf" | sed "36s(.*(FECINS = $fecha(" > "$confdir/afinstal.conf"
-       fi
-       
-       if [ $comp == 0 ]; then
-       #busco los datos
-       fecha1=`cat $afinstal | grep -n FECINS | grep 18 | sed s/\.\*\=\ //`
-       fecha2=`cat $afinstal | grep -n FECINS | grep 26 | sed s/\.\*\=\ //`
-       fecha3=`cat $afinstal | grep -n FECINS | grep 36 | sed s/\.\*\=\ //`
-       usu1=`cat $afinstal | grep -n USERID | grep 17 | sed s/\.\*\=\ //`
-       usu2=`cat $afinstal | grep -n USERID | grep 25 | sed s/\.\*\=\ //`
-       usu3=`cat $afinstal | grep -n USERID | grep 35 | sed s/\.\*\=\ //`
-cat<<MARCA
-***************************************************************
-* Se encuentran instalados los siguientes componentes:        *
-* Antifraude.pl instalado el $fecha1 por $usu1 *
-* Aficonf instalado el $fecha2 por $usu2 *
-* Antifraude.pl instalado el $fecha3 por $usu3 *
-*                                                             *
-*               Copyright TPSistemasOp (c) 2004               *
-***************************************************************
-
-Proceso de instalación cancelado.
-MARCA
-exit 0
-       fi
-else #si no  habia algo instalado instalo todo...
-       f="a"
-       while [ "$f" != "" ]; do
-cat <<MARCA
-***************************************************************
-*                                                             *
-*            Proceso de instalación de "Antifraude"           *
-*              Copyright TPSistemasOp (c) 2004                *
-*                                                             *
-***************************************************************
-A T E N C I O N: Al instalar Antifraude UD. expresa estar
-en un todo de acuerdo con los términos y condiciones del 
-ACUERDO DE LICENCIA DE SOFTWARE incluido en este paquete.
-
-Si desea cancelar este proceso oprima 'F' y luego ENTER.
-Para continuar oprima solamente ENTER.
-MARCA
-       read f
-       if [ "$f" = "F" ]; then
-               echo "Proceso de instalación cancelado"
-               exit 0
-       fi
-       done
-       #debo verificar que perl este instalado
-       if [ "esta" = "`type perl | sed s/\"perl is .*\"/\"esta\"/`" ]; then 
-               echo "Perl esta instalado"
-       else
-               cat <<MARCA
-               "ERROR !:"
-               "Este proceso de instalación solo puede ser"
-               "ejecutado si Perl 5 o superior ya esta instalado"
-               
-               "Efectúe a instalación de Perl"
-               "e inicie nuevamente el procedimiento de instalación."
-MARCA
-               exit 0 
-       fi
-       #defino los paths de configuracion e instalacion
-       CURDIR=$PWD
-       CONFDIR="${CURDIR}/conf"
-       INSTDIR="${CURDIR}/inst"
-       #creo el afinstal.conf y le agrego las 2 primeras lineas
-       echo "INSTDIR = $INSTDIR" >> "$CONFDIR/afinstal.conf"
-       echo "CONFDIR = $CONFDIR" >> "$CONFDIR/afinstal.conf"
-       for n in `seq 3 51`
-               do
-                       echo "" >> "$CONFDIR/afinstal.conf"
-               done            
-       linea=10
-       i=0
-       fecha=$(date)
-       for comando in antifraude.pl afimonio aficonf ; do 
-               op="a" 
-               while [ -n "$op" ]; do 
-                       #Almance el path actual 
-                       BINDIR="${CURDIR}/bin"
-                       DATADIR="${CURDIR}/llamadas"
-                       LOGDIR="${CURDIR}/log"
-                       
-                       echo "La ruta del directorio de instalación es: ($INSTDIR)"
-                       echo "La ruta del directorio de configuración es: ($CONFDIR)"
-                       echo "La ruta del directorio de ejecutables es: ($BINDIR)"
-                       DIRSELECTED=""
-                       if cambiaruta "ejecutables" $BINDIR ; then
-                               BINDIR=$DIRSELECTED
-                       fi
-                       if cambiaruta "de datos" $DATADIR ; then
-                               DATADIR=$DIRSELECTED
-                       fi
-                       if cambiaruta "de log" $LOGDIR ; then
-                               LOGDIR=$DIRSELECTED
-                       fi
-                       echo "Nombre del archivo de log: (${comando}.log)"
-                       echo "Si desea conservar este nombre presione ENTER, de lo "
-                       echo "contrario ingrese un nuevo nombre y luego ENTER"
-                       read LOGNAME
-                       if [ -z "$logname" ]; then
-                               LOGNAME="${comando}.log"
-                       fi
-                       echo "Tamaño máximo para el archivo <$LOGNAME> (Mb): 20Mb"
-                       echo "Si desea conservar este valor presione ENTER, de lo "
-                       echo "contrario ingrese un nuevo valor y luego ENTER"
-                       read LOGSIZE
-                       if [ -z "$LOGSIZE" ]; then
-                               LOGSIZE=20
-                       fi
-
-                       cat <<MARCA 
-                       "               Parametros de instalación de $comando           "
-                       "       ==========================================      "
-                       " Nombre del directorio de instalación: $INSTDIR                "
-                       " Nombre del directorio de ejecutables: $BINDIR                 "
-                       " Nombre del directorio de datos: $DATADIR                              "
-                       " Nombre del directorio de configuración: $CONFDIR              "
-                       " Directorio y nombre del archivo de log: $LOGDIR/$LOGNAME"
-                       " Tamaño máximo para el archivo de log: $LOGSIZE                "
-
-                       Si los datos ingresados son correctos oprima solamente ENTER, si desea
-                       modificar alguno de ellos oprima cualquier otra tecla y luego ENTER.
-MARCA
-                       read op         
-
-                       echo "Si desea iniciar la instalación de <$comando>, oprima"
-                       echo "solamente ENTER, si desea cancelar el proceso oprima"
-                       echo "cualquier otra tecla y luego ENTER."
-
-                       read op
-
-                       if [ -n "$op" ]; then
-                               echo "Proceso de instalación cancelado"
-                               exit 0
-                       fi
-
-                       # Cremos los directorios para este comando
-                       echo "Creando Estructura de Directorio...."
-                       mkdir -p $BINDIR
-                       mkdir -p $DATADIR
-                       mkdir -p $DATADIR/{aprocesar,enproceso,rechazadas,procesadas}
-                       mkdir -p $LOGDIR
-                       touch $LOGDIR/$LOGNAME
-                       echo "Moviendo Archivos....."
-                       cp $INSTDIR/$comando $BINDIR
-                       #cp $INSTDIR/umbrales.param $CONFDIR
-                       #cp $INSTDIR/*.data $DATADIR/aprocesar
-                       
-                       numlinea=$(($linea+$i))
-                       cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s/.*/Comando $comando/" > "$CONFDIR/afinstal.conf"
-                       i=$(($i+1))
-                       numlinea=$(($linea+$i))
-                       cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(BINDIR = $BINDIR(" > "$CONFDIR/afinstal.conf"
-                       i=$(($i+1))
-                       numlinea=$(($linea+$i))
-                       cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(LOGDIR = $LOGDIR(" > "$CONFDIR/afinstal.conf"
-                       i=$(($i+1))
-                       numlinea=$(($linea+$i))
-                       cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(LOGNAME = $LOGNAME(" > "$CONFDIR/afinstal.conf"
-                       i=$(($i+1))
-                       numlinea=$(($linea+$i))
-                       cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(LOGSIZE = $LOGSIZE(" > "$CONFDIR/afinstal.conf"
-                       if [ "$FILE" = "antifraude.pl" ]; then
-                               i=$(($i+1))
-                               numlinea=$(($linea+$i))
-                               cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(DATADIR = $DATADIR(" > "$CONFDIR/afinstal.conf"
-                               i=$(($i+1))
-                               numlinea=$(($linea+$i))
-                               cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(DATASIZE = (" > "$CONFDIR/afinstal.conf"
-                       fi              
-                       i=$(($i+1))
-                       numlinea=$(($linea+$i))
-                       cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(USERID = $USER(" > "$CONFDIR/afinstal.conf"
-                       i=$(($i+1))
-                       numlinea=$(($linea+$i))
-                       cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(FECINS = $fecha(" > "$CONFDIR/afinstal.conf"
-                       i=0
-                       linea=$(($linea+10))
-               done #for       
-       done #while
-       # Termino la instalacion, muestro informacion.
-       j=10
-       echo " ***************************************************************** "
-       echo " *                        Proceso de instalacion concluido                   * "
-       comandos=`cat "$CONFDIR/afinstal.conf" | grep Comando `
-       for i in 17 25 35 ; do
-               
-               fecha=`cat "$CONFDIR/afinstal.conf" | grep -n FECINS | grep $i | sed 's/.*= //'`
-               i=$(($i +1))
-               usu=`cat "$CONDIR/afinstal.conf" | grep -n USERID | grep $i | sed 's/.*= //'`
-               echo " *
-       done
-       
-fi #else       
diff --git a/deprecated/AFINSTAL b/deprecated/AFINSTAL
deleted file mode 100755 (executable)
index 2883a27..0000000
+++ /dev/null
@@ -1,256 +0,0 @@
-#!/bin/bash 
-# vim: set softtabstop=4 tabstop=4 
-# variables de entorno
-#echo "editor "$EDITOR
-#echo "env "$ENV
-#echo "home "$HOME
-#echo "host "$HOSTNAME
-#echo "logname "$LOGNAME
-#echo "user " $USER
-#echo "mail "$MAIL
-#echo "path "$PATH
-#echo "pwd "$PWD
-#echo "shell "$SHELL
-#echo "term "$TERM
-#echo "time out" $TMOUT
-
-#Includes
-. util.sh
-
-# chequeo sistema operativo
-echo "Chequeando SO ..."
-if [ -z  "`echo $0 | sed \"s/.*AFINSTAL$//\"`" ]; then
-       SISOPTP="Linux"
-elif [ -z  "`echo $0 | sed \"s/.*AFINSTAW$//\"`" ]; then
-       SISOPTP="Windows"
-elif [ -z  "`echo $0 | sed \"s/.*AFINSTAM$//\"`" ]; then
-       SISOPTP="Mac"
-fi
-
-CURSIS=$(uname)
-#echo "cursis $CURSIS"
-# comienzo instalacion si el sistema es correcto
-if [ "$SISOPTP" != "$CURSIS" ]; then
-       echo "ERROR !!!"
-       echo "Este proceso de instalación es para $SISOPTP"
-       echo "y su sistema operativo es $CURSIS"
-       echo "Solicite a su proveedor la versión adecuada"
-       echo "e inicie nuevamente el proceso de instalación"
-       exit 1
-else
-       echo "Proceso de instalación para $SISOPTP"
-       echo "Presione ENTER para continuar"    
-fi
-
-echo "*******************************************************"
-echo "*                                                     *"
-echo "*     Proceso de instalación de \"Antifraude\"        *"
-echo "*      Copyright TPSistemasOp  (c)2004                *"
-echo "*                                                     *"
-echo "*******************************************************"
-echo "A T E N C I O N: Al instalar Antifraude UD. expresa estar"
-echo "en un todo de acuerdo con los términos y condiciones del"
-echo "\"ACUERDO DE LICENCIA DE SOFTWARE\" incluido en este paquete"
-echo ""
-echo "Si desea cancelar este proceso oprima 'F' y luego ENTER"
-echo "Para continuar oprima 'C' y luego ENTER"
-
-preguntar "Su opción" "cCfF" opcion
-if [ "$opcion" == "F" ] || [ "$opcion" == "f" ]; then 
-       echo "Proceso de instalación cancelado"
-       exit 0
-fi     
-
-#Verifico que Perl este instalado
-if [ "esta" == "`type perl | sed s/\"perl is .*\"/\"esta\"/`" ]; then 
-       echo "perl esta instalado"
-else
-       echo "ERROR !:"
-       echo "Este proceso de instalación solo puede ser"
-       echo "ejecutado si Perl 5 o superior ya esta instalado"
-       echo ""
-       echo "Efectúe a instalación de Perl"
-       echo "e inicie nuevamente el procedimiento de instalación."
-       exit 1 
-fi
-
-PATH_GENERAL=$HOME"/antifraude"        
-INSTDIR=$PATH_GENERAL"/inst/"
-CONFDIR=$PATH_GENERAL"/conf/"
-BINDIR=$PATH_GENERAL"/bin/"
-DATADIR=$PATH_GENERAL"/data"
-LOGDIR=$PATH_GENERAL"/log"
-LOGNAME="comando.log"
-LOGSIZE=10
-
-again="s"
-while [ "$again" == "s" ]; do
-       op="s"
-       while [ "$op" == "s" ]; do
-               #muestro el directorio donde se instalara el sistema
-               #
-               # Asi queda mas corto ;-)
-               #
-               leer "Nombre del directorio de instalación" "$INSTDIR" INSTDIR
-
-               echo "Nombre del directorio de configuración ($CONFDIR), ingrese una nueva ruta o ENTER para continuar: $PATH_GENERAL/<nueva ruta>"
-               read AUX2
-               if [ ! -z $AUX2 ]; then 
-                       CONFDIR="$PATH_GENERAL/$AUX2"
-               fi      
-               echo "Nombre del directorio de ejecutables ($BINDIR), ingrese una nueva ruta o ENTER para continuar: $PATH_GENERAL/<nueva ruta>"
-               read AUX3
-               if [ ! -z $AUX3 ]; then 
-                       BINDIR="$PATH_GENERAL/$AUX3"
-               fi      
-               echo "Desea volver a modificar?(s para modificar, ENTER para continuar)"
-               read op
-done #fin de los primeros directorios
-       op="s"
-       while [ "$op" == "s" ]; do
-               echo "Nombre del directorio de datos ($DATADIR),ingrese una nueva ruta o ENTER para continuar: $PATH_GENERAL/<nueva ruta>"
-               read AUX4
-               if [ ! -z $AUX4 ]; then 
-                       DATADIR="$PATH_GENERAL/$AUX4"
-               fi      
-               echo "Nombre del directorio de log ($LOGDIR), ingrese una nueva ruta o ENTER para continuar: $PATH_GENERAL/<nueva ruta>"
-               read AUX5
-               if [ ! -z $AUX5 ]; then 
-                       LOGDIR="$PATH_GENERAL/$AUX5"
-               fi      
-               echo "Nombre del archivo de log ($LOGNAME), ingrese un nuevo nombre o ENTER para continuar: <nuevo nombre>"
-               read AUX6
-               if [ ! -z $AUX6 ]; then 
-                       LOGNAME="$AUX6"
-               fi      
-               echo "Tamaño máximo del archivo de log ($LOGSIZE) en MegaBytes, ingrese un nuevo tamaño o ENTER para continuar: <nuevo tamaño>"
-               #tengo que verificar que sea un numero
-               read AUX7
-               while [ ! -z "`echo $AUX7 | sed \"s/\"[0-9]*\"//\"`" ]; do
-                       echo "Debe ingresar un numero"
-                       read AUX7
-               done
-               if [ ! -z $AUX7 ]; then 
-                       LOGSIZE="$AUX7"                 
-               fi
-               
-               echo "Desea volver a modificar?(s para modificar, ENTER para continuar)"
-               read op
-       done #fin de los segundos directorios
-       clear
-
-       echo "\"   PARAMETROS DE LA INSTALACION DE ANTIFRAUDE    \""
-       echo "\"   ==========================================\""
-       echo "\"Nombre del directorio de instalación: $INSTDIR\""
-       echo "\"Nombre del directorio de ejecutables: $BINDIR\""
-       echo "\"Nombre del directorio de datos: $DATADIR\""
-       echo "\"Nombre del directorio de configuración: $CONFDIR\""
-       echo "\"Directorio y nombre del archivo de log: $LOGDIR/$LOGNAME\""
-       echo "\"Tamaño máximo para el archivo de log: $LOGSIZE Mbytes\""
-       echo "\"Si los datos son correctos oprima solamente ENTER, si desea modificar
-       alguno de ellos oprima cualquier otra tecla y luego ENTER.\""
-       read again
-done #fin todo de nuevo
-
-echo "Si desea iniciar la instalación del Antifraude, oprima solamente ENTER, si
-desea cancelar el proceso oprima cualquier otra tecla y luego ENTER."
-read op
-if [ "$op" != "" ]; then
-       echo "Proceso de instalación cancelado"
-       exit 0
-fi
-
-#creo los directorios 
-echo "Creando Estructura de directorios"
-if [ -d "$PATH_GENERAL" ]; then 
-       echo "El directorio ya existe."
-       echo "Seleccione una opcion R: reinstalar, A: actualizar, C: Cancelar "
-       read sel
-       while [ "$sel" != "R" ]; do # || "$sel" != "A" ]; do
-               if [ "$sel" == "C" ]; then 
-                       echo "Proceso de Instalación Cancelado"
-                       exit 0
-               fi      
-               echo "Opción no válida" 
-               echo "Ingrese nuevamente la opción"
-               read sel
-       done
-       if [ "$sel" == "R" ]; then
-               rm -rf $PATH_GENERAL 
-               mkdir $PATH_GENERAL
-               mkdir $INSTDIR
-               mkdir $CONFDIR
-               mkdir $BINDIR
-               mkdir $DATADIR
-               mkdir $LOGDIR
-               mkdir -p "$DATADIR/{aprocesar,enproceso,rechazadas,procesadas}"
-               #creo archivos de log
-               touch "$LOGDIR/$LOGNAME"
-               #inserto informacion de instalacion
-               echo "INSTDIR = $INSTDIR" >> "$CONFDIR/afinstal.conf"
-               echo "CONFDIR = $CONFDIR" >> "$CONFDIR/afinstal.conf"
-               for n in `seq 3 51`
-               do
-                       echo "" >> "$CONFDIR/afinstal.conf"
-               done            
-               linea=10
-               i=0
-               fecha=$(date)
-               for FILE in ANTIFRAUDE.PL AFICONF AFIMONIO
-               do
-                       numlinea=`expr $linea + $i`
-                       cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s/.*/Comando $FILE/" > "$CONFDIR/afinstal.conf"
-                       i=`expr $i + 1`
-                       numlinea=`expr $linea + $i`
-                       cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(BINDIR = $BINDIR(" > "$CONFDIR/afinstal.conf"
-                       i=`expr $i + 1`
-                       numlinea=`expr $linea + $i`
-                       cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(LOGDIR = $LOGDIR(" > "$CONFDIR/afinstal.conf"
-                       i=`expr $i + 1`
-                       numlinea=`expr $linea + $i`
-                       cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(LOGNAME = $LOGNAME(" > "$CONFDIR/afinstal.conf"
-                       i=`expr $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`
-                               numlinea=`expr $linea + $i`
-                               cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(DATADIR = $DATADIR(" > "$CONFDIR/afinstal.conf"
-                               i=`expr $i + 1`
-                               numlinea=`expr $linea + $i`
-                               cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(DATASIZE = (" > "$CONFDIR/afinstal.conf"
-                       fi              
-                       i=`expr $i + 1`
-                       numlinea=`expr $linea + $i`
-                       cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(USERID = $USER(" > "$CONFDIR/afinstal.conf"
-                       i=`expr $i + 1`
-                       numlinea=`expr $linea + $i`
-                       cat "$CONFDIR/afinstal.conf" | sed "$numlinea""s(.*(FECINS = $fecha(" > "$CONFDIR/afinstal.conf"
-
-                       i=0
-                       linea=`expr $linea + 10`
-               done #for
-       fi      #seleccion opcion
-fi #si esxiste la estructura de directorios.. FIXME si no existe, hay que crearlo
-
-
-
-#ofrezco la posibilidad de correr el demonio..
-
-cat << MARCA
-Desea efectuar la activación del demonio antifraude?
-Si desea arrancar el proceso de antifraude, oprima solamente ENTER,
-si no desea correr el proceso oprima cualquier otra tecla y luego ENTER.
-MARCA
-
-read op 
-if [ "$op" == "" ]; then
-       #lanzo el proceso
-       num=$($BINDIR/afimonio &)
-       err=$num
-       echo  $err
-       num=`echo $num | sed "s/\[.*\]//"`
-       echo "El proceso afimonio se ha activado. Número de proceso:"
-else
-       echo "Para realizar la activación utilice el comando afimonio de la siguiente manera: $BINDIR/afimonio &".
-fi