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 $fechaconf 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?" "SsNn" key
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 ################### MAIN SCRIPT CODE ###################
161 CURRDIR=`echo ${0%/*} | sed s%'\.'%$PWD%`
162 CONFDIR="${CURRDIR}/conf"
163 INSTDIR="${CURRDIR}/inst"
164 CONFFILE="${CONFDIR}/afinstal.conf"
170 # [STEP1] Verifico el OS vs SCRIPT y la presencia de PERL
171 echo -n ">> Verificando version del software contra el OS... "
173 if [ "$?" -ne 0 ]; then
178 echo -n ">> Verificando la existencia de PERL... "
180 if [ "$?" -ne 0 ]; then
185 echo ">> Proceso de instalacion para $SISOPTP iniciado."
186 echo ">> Presione ENTER para continuar"
189 # [STEP2] License Agreements
191 ***************************************************************
193 * Proceso de instalacion de "Antifraude" *
194 * Copyleft TPSistemasOp (c) 2004 *
196 ***************************************************************
197 A T E N C I O N: Al instalar Antifraude UD. expresa estar
198 en un todo de acuerdo con los terminos y condiciones del
199 ACUERDO DE LICENCIA DE SOFTWARE incluido en este paquete.
201 Si desea cancelar este proceso oprima 'F' y luego ENTER.
202 Para continuar oprima ENTER.
205 while [ "$key" != "" ]; do
207 if [ "$key" = "F" ]; then
213 # [STEP3] Chequeamos si hay componentes ya instalados
214 if [ -f "$CONFFILE" ] && [ -s "$CONFFILE" ]; then
215 #Busco los nombres de los binarios
216 binfraude=`grep -n "Comando" "$CONFFILE" | grep 10 | sed s%.*Comando.%%`
217 binconf=`grep -n "Comando" "$CONFFILE" | grep 20 | sed s%.*Comando.%%`
218 binmonio=`grep -n "Comando" "$CONFFILE" | grep 30 | sed s%.*Comando.%%`
219 #Busco donde deberian estar instalados
220 dirfraude=`grep -n "BINDIR" "$CONFFILE" | grep 11 | sed 's%.*= %%'`
221 dirconf=`grep -n "BINDIR" "$CONFFILE" | grep 21 | sed 's%.*= %%'`
222 dirmonio=`grep -n "BINDIR" "$CONFFILE" | grep 31 | sed 's%.*= %%'`
223 # Verifico finalmente si esta alli el archivo, en caso negativo, habilito
224 # la posibilidad de instalar ese componente
225 if [ ! -f "${dirmonio}/$binmonio" ]; then
229 usermonio=`grep -n "USERID" "$CONFFILE" | grep 35 | sed 's%.*= %%'`
230 fechamonio=`grep -n "FECINS" "$CONFFILE" | grep 36 | sed 's%.*= %%'`
232 if [ ! -f "${dirconf}/$binconf" ]; then
233 choices="${choices} AFICONF"
236 userconf=`grep -n "USERID" "$CONFFILE" | grep 25 | sed 's%.*= %%'`
237 fechaconf=`grep -n "FECINS" "$CONFFILE" | grep 26 | sed 's%.*= %%'`
239 if [ ! -f "${dirfraude}/$binfraude" ]; then
240 choices="${choices} ANTIFRAUDE"
243 userfraude=`grep -n "USERID" "$CONFFILE" | grep 17 | sed 's%.*= %%'`
244 fechafraude=`grep -n "FECINS" "$CONFFILE" | grep 18 | sed 's%.*= %%'`
249 choices="AFIMONIO AFICONF ANTIFRAUDE"
252 # [STEP4] Seleecion de los componentes a instalar
253 # TODO: tener en cuenta los que ya estan y no permitir elegirlos
254 if [ -z "$choices" ]; then
261 # [STEP5] Definir paths de cada componente e instalarlo guardando
262 # la informacion pertinente en el afinstal.conf
263 if [ ! -f "$CONFFILE" ] || [ ! -s "$CONFFILE" ]; then
265 echo "INSTDIR = $INSTDIR" >> $CONFFILE
266 echo "CONFDIR = $CONFDIR" >> $CONFFILE
267 for n in `seq 3 51`; do
272 # Comienzo la instalacion de cada componente
273 comandos=`echo $toinstall | sed s%,%" "%g`
274 for comando in $comandos
277 while [ -n "$choice" ]; do
279 # Directorios FIJOS para todos los componentes
283 ** Iniciando instalacion del componente <$comando>.
284 ** A continuacion se le permitira establecer la estructura de
285 ** directorios donde se instalara el mismo.
287 >> Nombre del directorio de instalacion: ($INSTDIR)
288 >> Nombre del directorio de configuracion: ($CONFDIR)
292 # Le pido un rootpath donde se instalara este comando en particular
293 leer ">> Ingrese la ruta de instalación" "$CURRDIR" userpath
294 if [ -n "$userpath" ]; then ROOTPATH=$userpath
295 else ROOTPATH=$CURRDIR
298 # preparlos los dirs que voy a sugerir
299 BINDIR="${ROOTPATH}/bin"
300 LOGDIR="${ROOTPATH}/log"
303 # Le muestro el directorio sugerido para los binarios
304 askDir "ejecutables" "bin" $BINDIR
305 if [ "$?" -ne 0 ]; then BINDIR="${ROOTPATH}/$DIRSELECTED"
308 # Si estoy con antifraude.pl muestro el sugerido para los datos
309 if [ "$comando" = "antifraude.pl" ]; then
310 DATADIR="${ROOTPATH}/llamadas"
311 askDir "datos" "llamadas" $DATADIR
312 if [ "$?" -ne 0 ]; then DATADIR="${ROOTPATH}/$DIRSELECTED"
316 # Le muestro el directorio para los logs
317 askDir "de datos" "log" $LOGDIR
318 if [ "$?" -ne 0 ]; then LOGDIR="${ROOTPATH}/$DIRSELECTED"
321 # Le sugiero el archivo de log
322 leer ">> Nombre del archivo de log" "${comando%.pl}.log" LOGFILE
323 if [ -z "$LOGFILE" ]; then
324 LOGFILE="${comando%.pl}.log"
327 # Le sugiero un size para el logfile
328 leer ">> Tamaño máximo para el archivo ($LOGFILE) en MB" "200" LOGSIZE
329 if [ -z "$LOGSIZE" ]; then
335 >> Parametros de instalacion de $comando
336 >> ===================================================================
337 >> Directorio de instalación: $INSTDIR
338 >> Directorio de configuración: $CONFDIR
339 >> Directorio de ejecutables: $BINDIR
340 >> Directorio de datos: $DATADIR
341 >> Archivo de log: $LOGDIR/$LOGFILE
342 >> Tamaño máximo para el archivo de log: $LOGSIZE
344 Si los datos ingresados son correctos oprima solamente ENTER, si desea
345 modificar alguno de ellos oprima cualquier otra tecla y luego ENTER.
351 Si desea iniciar la instalación de <$comando>, oprima ENTER, si desea
352 cancelar el proceso oprima cualquier otra tecla y luego ENTER.
355 if [ -n "$choice" ]; then
360 # Comienzo a crear la estructura de directorios definida (Check permisos!!)
361 echo ">> Creando Estructura de Directorio...."
364 mkdir -p "$CONFDIR/lock"
366 touch "$LOGDIR/$LOGFILE"
367 if [ $comando = "antifraude.pl" ]; then
369 mkdir -p $DATADIR/{aprocesar,enproceso,rechazadas,procesadas}
370 mkdir -p $DATADIR/alarmas
372 echo ">> Moviendo Archivos....."
373 cp "$INSTDIR/$comando" "$BINDIR"
375 # TODO : no se debe copiar solo 1 vez?
376 cp "$INSTDIR/oridesti.txt" "$CONFDIR"
378 # Guardo los datos en el archivo de configuracion
380 fecha=$(date +%d/%m/%Y)
382 "afimonio" ) numline=30;
386 "aficonf" ) numline=20;
390 "antifraude.pl" ) numline=10;
396 changeLine "$CONFFILE" "$numline" "Comando $comando"
397 numline=$(($numline+1))
398 changeLine "$CONFFILE" "$numline" "BINDIR = $BINDIR"
399 numline=$(($numline+1))
400 changeLine "$CONFFILE" "$numline" "LOGDIR = $LOGDIR"
401 numline=$(($numline+1))
402 changeLine "$CONFFILE" "$numline" "LOGFILE = $LOGFILE"
403 numline=$(($numline+1))
404 changeLine "$CONFFILE" "$numline" "LOGSIZE = $LOGSIZE"
405 numline=$(($numline+1))
406 if [ "$comando" = "antifraude.pl" ]; then
407 changeLine "$CONFFILE" "$numline" "DATADIR = $DATADIR"
408 numline=$(($numline+1))
409 changeLine "$CONFFILE" "$numline" "DATASIZE = "
410 numline=$(($numline+1))
412 changeLine "$CONFFILE" "$numline" "USERID = $userid"
413 numline=$(($numline+1))
414 changeLine "$CONFFILE" "$numline" "FECINS = $fecha"
417 # Creacion de archivos auxiliares
418 echo "0" > "$CONFDIR/umbrales.id"
420 # [STEP6] Ofrecer arrancar el Afimonio si estan los tres paquetes instalados
422 # [STEP7] Mostrar en un recuadro que se encuentra instalado en el sistema