2 # vim: set softtabstop=4 tabstop=4
6 ################# Funciones ###########################
8 # Devuelve 0 si la ruta fue cambiada y 1 si quedo por defecto
10 leer ">> Ingrese la ruta para los archivos $1" "$2" DIRSELECTED
11 if [ -n "$DIRSELECTED" ]; then return 1
16 # Devuelve 0 si el script y el OS matchean, 1 otherwise
19 SCRIPTOS="un sistema desconocido"
31 if [ "$CURSIS" != "$SCRIPTOS" ]; then
35 Este proceso de instalacion es para $SCRIPTOS
36 y su sistema operativo es $CURSIS
37 Solicite a su proveedor la version adecuada
38 e inicie nuevamente el proceso de instalacion.
46 # Devuelve 0 si se encuentra Perl instalado, 1 otherwise
47 function checkPerl() {
48 if [ "perl" = "`type perl | sed s/\"perl is .*\"/\"perl\"/`" ]; then
54 Este proceso de instalación solo puede ser
55 ejecutado si Perl 5 o superior ya esta instalado
57 Efectúe a instalación de Perl
58 Inicie nuevamente el procedimiento de instalación.
65 # Modifica una linea dada de un archivo dado
66 function changeLine() {
67 cat "$1" | sed "${2}s%.*%$3%" > "$1"
70 # Mensaje generico de abort
71 function abortMessage {
72 echo ">> Proceso de instalacion cancelado"
75 # Muestra los componentes instalados, usando vars ya definidas previamente
76 function showInstalled {
78 **********************************************************************
80 * Se encuentran instalados los siguientes componentes :
82 if [ "$havefraude" -eq 1 ]; then
83 echo "* Antifraude.pl instalado el $fechafraude por $userfraude"
85 if [ "$haveconf" -eq 1 ]; then
86 echo "* Aficonf instalado el $fechaconf por $userconf"
88 if [ "$havemonio" -eq 1 ]; then
89 echo "* Afimonio instalado el $fechamonio por $usermonio"
93 * Copyleft TPSistemasOp (c) 2004
94 **********************************************************************
98 # Permite seleccionar que componentes se instalaran
99 function selectModules() {
100 PS3="Seleccione un componente: "
103 while [ "$key" = "S" ] && [ -n "$choices" ]
108 ***********************************************************
109 * SELECCION de COMPONENTES *
110 * Por favor seleecione los componentes a ser instalados *
111 * de a uno por vez, a traves del siguiente menu: *
112 ***********************************************************
113 >> Se instalaran: $toinstall
116 select REPLY in $choices
119 "AFIMONIO" ) selected="afimonio";;
120 "AFICONF" ) selected="aficonf";;
121 "ANTIFRAUDE" ) selected="antifraude.pl";;
122 * ) selected="INVALID";;
127 if [ $selected != "INVALID" ]; then
128 choices=`echo $choices | sed s/$REPLY//`
129 if [ -z "$toinstall" ]; then toinstall=$selected
130 else toinstall="$toinstall,$selected"
133 if [ -n "$choices" ]; then
135 echo "Se instalará [$selected]"
137 preguntar "¿Desea agregar otro componente para instalar (S)?" SsNn key S
138 if [ "$key" = "s" ]; then
144 if [ -n "$key" ]; then echo
147 ***********************************************************
148 * La seleccion de componentes ha finalizado. Se procedera *
149 * con la instalacion. *
150 ***********************************************************
151 Componentes a instalar: [ $toinstall ]
153 < Presione una tecla para continuar >
158 # Ofrece arrancar el afimonio si es posible
160 if [ "$havemonio" -eq 1 ] && [ "$havefraude" -eq 1 ]; then
161 echo "Desea efectuar la activacion del demonio antifraude?"
162 echo "Si desea arrancar el proceso oprima solamente ENTER, de lo contrario oprima cualquier otra tecla y luego ENTER."
164 monbin=`grep -n "Comando" "$CONFFILE" | grep '^30' | sed s%.*Comando.%%`
165 mondir=`grep -n "BINDIR" "$CONFFILE" | grep '^31' | sed 's%.*= %%'`
166 if [ -z "$choice" ]; then
167 $mondir/afimonio_daemon.sh start
169 echo "Para realizar la activacion del demonio, tipee en linea de comando: $mondir/afimonio_daemon.sh start"
175 ################### MAIN SCRIPT CODE ###################
178 CURRDIR=`echo ${0%/*} | sed s%'\.'%$PWD%`
179 CONFDIR="${CURRDIR}/conf"
180 INSTDIR="${CURRDIR}/inst"
181 CONFFILE="${CONFDIR}/afinstal.conf"
183 OWNCONFDIR="$HOME/.antifraude"
188 # [STEP1] Verifico el OS vs SCRIPT y la presencia de PERL
189 echo -n ">> Verificando version del software contra el OS... "
191 if [ "$?" -ne 0 ]; then
196 echo ">> Proceso de instalacion para $SISOPTP iniciado."
197 echo ">> Presione ENTER para continuar"
200 # [STEP2] License Agreements
202 ***************************************************************
204 * Proceso de instalacion de "Antifraude" *
205 * Copyleft TPSistemasOp (c) 2004 *
207 ***************************************************************
208 A T E N C I O N: Al instalar Antifraude UD. expresa estar
209 en un todo de acuerdo con los terminos y condiciones del
210 ACUERDO DE LICENCIA DE SOFTWARE incluido en este paquete.
212 Si desea cancelar este proceso oprima 'F' y luego ENTER.
213 Para continuar oprima ENTER.
216 while [ "$key" != "" ]; do
218 if [ "$key" = "F" ]; then
224 # [STEP3] Chequeamos si hay componentes ya instalados
225 if [ -f "$CONFFILE" ] && [ -s "$CONFFILE" ]; then
226 #Busco los nombres de los binarios
227 binfraude=`grep -n "Comando" "$CONFFILE" | grep '^10' | sed s%.*Comando.%%`
228 binconf=`grep -n "Comando" "$CONFFILE" | grep '^20' | sed s%.*Comando.%%`
229 binmonio=`grep -n "Comando" "$CONFFILE" | grep '^30' | sed s%.*Comando.%%`
230 #Busco donde deberian estar instalados
231 dirfraude=`grep -n "BINDIR" "$CONFFILE" | grep '^11' | sed 's%.*= %%'`
232 dirconf=`grep -n "BINDIR" "$CONFFILE" | grep '^21' | sed 's%.*= %%'`
233 dirmonio=`grep -n "BINDIR" "$CONFFILE" | grep '^31' | sed 's%.*= %%'`
234 # Verifico finalmente si esta alli el archivo, en caso negativo, habilito
235 # la posibilidad de instalar ese componente
236 if [ ! -f "${dirmonio}/$binmonio" ]; then
240 usermonio=`grep -n "USERID" "$CONFFILE" | grep '^35' | sed 's%.*= %%'`
241 fechamonio=`grep -n "FECINS" "$CONFFILE" | grep '^36' | sed 's%.*= %%'`
243 if [ ! -f "${dirconf}/$binconf" ]; then
244 choices="${choices} AFICONF"
247 userconf=`grep -n "USERID" "$CONFFILE" | grep '^25' | sed 's%.*= %%'`
248 fechaconf=`grep -n "FECINS" "$CONFFILE" | grep '^26' | sed 's%.*= %%'`
250 if [ ! -f "${dirfraude}/$binfraude" ]; then
251 choices="${choices} ANTIFRAUDE"
254 userfraude=`grep -n "USERID" "$CONFFILE" | grep '^17' | sed 's%.*= %%'`
255 fechafraude=`grep -n "FECINS" "$CONFFILE" | grep '^18' | sed 's%.*= %%'`
260 choices="AFIMONIO AFICONF ANTIFRAUDE"
263 # [STEP4] Seleecion de los componentes a instalar
264 # TODO: tener en cuenta los que ya estan y no permitir elegirlos
265 if [ -z "$choices" ]; then
273 # [STEP5] Definir paths de cada componente e instalarlo guardando
274 # la informacion pertinente en el afinstal.conf
275 if [ ! -f "$CONFFILE" ] || [ ! -s "$CONFFILE" ]; then
277 echo "INSTDIR = $INSTDIR" >> $CONFFILE
278 echo "CONFDIR = $CONFDIR" >> $CONFFILE
279 for n in `seq 3 51`; do
283 if [ ! -f "$OWNCONFDIR" ]; then
284 mkdir -p "$OWNCONFDIR"
286 if [ ! -f "$OWNCONFDIR/lock" ]; then
287 mkdir -p "$OWNCONFDIR/lock"
289 if [ ! -f "$OWNCONFDIR/conf" ]; then
290 mkdir -p "$OWNCONFDIR/conf"
293 # Comienzo la instalacion de cada componente
294 comandos=`echo $toinstall | sed s%,%" "%g`
295 for comando in $comandos
298 while [ -n "$choice" ]; do
300 # Directorios FIJOS para todos los componentes
302 if [ "$comando" = "antifraude.pl" ]; then
303 echo -n ">> Verificando la existencia de PERL... "
305 if [ "$?" -ne 0 ]; then
314 ** Iniciando instalacion del componente <$comando>.
315 ** A continuacion se le permitira establecer la estructura de
316 ** directorios donde se instalara el mismo.
318 >> Nombre del directorio de instalacion: ($INSTDIR)
319 >> Nombre del directorio de configuracion: ($CONFDIR)
323 # Le pido un rootpath donde se instalara este comando en particular
325 while [ $is_writeable -eq 0 ]; do
326 leer ">> Ingrese la ruta de instalación" "$CURRDIR" userpath
327 if [ -n "$userpath" ]; then
329 if [ -w "${userpath%/*}" ]; then is_writeable=1
330 else echo ">> ERROR: No es posible crear dicho directorio"
338 # preparlos los dirs que voy a sugerir
339 BINDIR="${ROOTPATH}/bin"
340 LOGDIR="${ROOTPATH}/log"
343 # Le muestro el directorio sugerido para los binarios
344 askDir "ejecutables" "bin" $BINDIR
345 if [ "$?" -ne 0 ]; then BINDIR="${ROOTPATH}/$DIRSELECTED"
348 # Si estoy con antifraude.pl muestro el sugerido para los datos
349 if [ "$comando" = "antifraude.pl" ]; then
350 DATADIR="${ROOTPATH}/llamadas"
351 askDir "datos" "llamadas" $DATADIR
352 if [ "$?" -ne 0 ]; then DATADIR="${ROOTPATH}/$DIRSELECTED"
356 # Le muestro el directorio para los logs
357 askDir "de datos" "log" $LOGDIR
358 if [ "$?" -ne 0 ]; then LOGDIR="${ROOTPATH}/$DIRSELECTED"
361 # Le sugiero el archivo de log
362 leer ">> Nombre del archivo de log" "${comando%.pl}.log" LOGFILE
363 if [ -z "$LOGFILE" ]; then
364 LOGFILE="${comando%.pl}.log"
367 # Le sugiero un size para el logfile
368 leer ">> Tamaño máximo para el archivo ($LOGFILE) en MB" "200" LOGSIZE
369 if [ -z "$LOGSIZE" ]; then
375 >> Parametros de instalacion de $comando
376 >> ===================================================================
377 >> Directorio de instalación: $INSTDIR
378 >> Directorio de configuración: $CONFDIR
379 >> Directorio de ejecutables: $BINDIR
380 >> Directorio de datos: $DATADIR
381 >> Archivo de log: $LOGDIR/$LOGFILE
382 >> Tamaño máximo para el archivo de log: $LOGSIZE
384 Si los datos ingresados son correctos oprima solamente ENTER, si desea
385 modificar alguno de ellos oprima cualquier otra tecla y luego ENTER.
391 Si desea iniciar la instalación de <$comando>, oprima ENTER, si desea
392 cancelar el proceso oprima cualquier otra tecla y luego ENTER.
395 if [ -n "$choice" ]; then
400 # Comienzo a crear la estructura de directorios definida (Check permisos!!)
401 echo ">> Creando Estructura de Directorio...."
405 touch "$LOGDIR/$LOGFILE"
406 if [ "$comando" = "antifraude.pl" ]; then
408 mkdir -p "$DATADIR"/{aprocesar,enproceso,rechazadas,procesadas}
409 mkdir -p "$DATADIR/alarmas"
411 echo ">> Moviendo Archivos....."
412 cp "$INSTDIR/$comando" "$BINDIR"
413 chmod u+x "$BINDIR/$comando"
414 if [ "$comando" = "afimonio" ]; then
415 cp "$INSTDIR/afimonio_daemon.sh" "$BINDIR"
416 chmod u+x "$BINDIR/afimonio_daemon.sh"
419 # Copio umbrales, oridesti y utilities una sola vez
420 if [ ! -f "$OWNCONFDIR/oridesti.txt" ]; then
421 cp "$INSTDIR/oridesti.txt" "$OWNCONFDIR"
423 if [ ! -f "$OWNCONFDIR/umbrales.param" ]; then
424 cp "$INSTDIR/umbrales.param" "$OWNCONFDIR"
426 if [ ! -f "$OWNCONFDIR/umbrales.id" ]; then
427 echo 0 >> "$OWNCONFDIR/umbrales.id"
429 if [ ! -f "$OWNCONFDIR/util.sh" ]; then
430 cp "$INSTDIR/util.sh" "$OWNCONFDIR"
433 # Guardo los datos en el archivo de configuracion
434 ownconffile="$OWNCONFDIR/conf/${comando%.pl}.conf"
435 if [ -f "$ownconffile" ]; then
436 rm -rf "$ownconffile"
439 fecha=$(date +%d/%m/%Y)
441 "afimonio" ) numline=30;
446 "aficonf" ) numline=20;
451 "antifraude.pl" ) numline=10;
458 changeLine "$CONFFILE" "$numline" "Comando $comando"
459 numline=$(($numline+1))
460 changeLine "$CONFFILE" "$numline" "BINDIR = $BINDIR"
461 echo "${prefix}_BINDIR=\"$BINDIR\"" >> $ownconffile
462 numline=$(($numline+1))
463 changeLine "$CONFFILE" "$numline" "LOGDIR = $LOGDIR"
464 echo "${prefix}_LOGDIR=\"$LOGDIR\"" >> $ownconffile
465 numline=$(($numline+1))
466 changeLine "$CONFFILE" "$numline" "LOGFILE = $LOGFILE"
467 echo "${prefix}_LOGFILE=\"$LOGFILE\"" >> $ownconffile
468 numline=$(($numline+1))
469 changeLine "$CONFFILE" "$numline" "LOGSIZE = $LOGSIZE"
470 echo "${prefix}_LOGSIZE=$LOGSIZE" >> $ownconffile
471 numline=$(($numline+1))
472 if [ "$comando" = "antifraude.pl" ]; then
473 changeLine "$CONFFILE" "$numline" "DATADIR = $DATADIR"
474 echo "${prefix}_DATADIR=\"$DATADIR\"" >> $ownconffile
475 numline=$(($numline+1))
476 changeLine "$CONFFILE" "$numline" "DATASIZE = "
477 numline=$(($numline+1))
479 changeLine "$CONFFILE" "$numline" "USERID = $userid"
480 numline=$(($numline+1))
481 changeLine "$CONFFILE" "$numline" "FECINS = $fecha"
482 echo ">> Instalación del componente $comando completada"
483 echo ">> Presione ENTER para continuar"
487 # [STEP6] Ofrecer arrancar el Afimonio si estan los tres paquetes instalados
490 # [STEP7] Mostrar en un recuadro que se encuentra instalado en el sistema