]> git.llucax.com Git - z.facultad/75.08/llamadas.git/commitdiff
Ya utiliza el antifraude.conf
authorAlan Kennedy <kennedya@3dgames.com.ar>
Sun, 24 Oct 2004 06:04:48 +0000 (06:04 +0000)
committerAlan Kennedy <kennedya@3dgames.com.ar>
Sun, 24 Oct 2004 06:04:48 +0000 (06:04 +0000)
inst/antifraude.pl

index cdb843d526cd0c3c1765dc6ba8c28e6606b0daea..3e9a9f0faa0b13fb5ba8453fe58ed7eea9d69fde 100644 (file)
@@ -64,7 +64,8 @@ sub getConfVar {
        do { $line = <CONFIGFILE> } until $. == $linenumber;
        close(CONFIGFILE);
        chop($line);
-       ($confvar = $line) =~ s/^.*= (.*)/$1/;
+       ($confvar = $line) =~ s/"(.*)"$/$1/;
+       $confvar =~ s/^.*=//;
        return $confvar;
 }
 
@@ -156,24 +157,16 @@ sub checkUmbrales {
 }
 
 # --------- MAIN CODE -------- #
-# En la version final, recibo por param el directorio del .conf, por ahora
-# recibo un dir donde tengo archivos de llamadas
-if ((!$ARGV[0]) || (! -d $ARGV[0])) { 
-       print("No se ha ingresado un directorio fuente de llamadas\n");
-       exit 1;
-}
-
 # File locking..
 if (is_lock()) { exit 1; }
 lock();
 
 # Defino some GLOBALS
-$CONFDIR = shift;
-$CONFDATA{logdir} = getConfVar("$CONFDIR/afinstal.conf",12);
-$CONFDATA{logfile} = getConfVar("$CONFDIR/afinstal.conf",13);
-$CONFDATA{logsize} = getConfVar("$CONFDIR/afinstal.conf",14);
-$CONFDATA{datadir} = getConfVar("$CONFDIR/afinstal.conf",15);
-$CONFDATA{alarmlog} = "$CONFDIR/alarmas/alarmas.txt";
+$CONFDIR = "$ENV{'HOME'}/.antifraude";
+$CONFDATA{logdir} = getConfVar("$CONFDIR/conf/antifraude.conf",2);
+$CONFDATA{logfile} = getConfVar("$CONFDIR/conf/antifraude.conf",3);
+$CONFDATA{logsize} = getConfVar("$CONFDIR/conf/antifraude.conf",4);
+$CONFDATA{datadir} = getConfVar("$CONFDIR/conf/antifraude.conf",5);
 
 # Cargo los UMBRALES en memoria
 open(PARAMFILE,"$CONFDIR/umbrales.param") or die "No se pudo abrir el archivo de umbrales";