# Devuelve 0 si el script y el OS matchean, 1 otherwise
function checkOS() {
- if echo $0 | egrep -q 'AFINSTAL$'; then
+ if echo $0 | egrep -q 'afinstal$'; then
SCRIPTOS="Linux"
fi
- if echo $0 | egrep -q 'AFINSTAM$'; then
+ if echo $0 | egrep -q 'afinstam$'; then
SCRIPTOS="Mac"
fi
- if echo $0 | egrep -q 'AFINSTAW$'; then
+ if echo $0 | egrep -q 'afinstaw$'; then
SCRIPTOS="Windows"
fi
* Se encuentran instalados los siguientes componentes :
MARCA
if [ "$havefraude" -eq 1 ]; then
- echo "* Antifraude.pl instalado el $fechafraude por UID $userfraude"
+ echo "* Antifraude.pl instalado el $fechafraude por $userfraude"
fi
if [ "$haveconf" -eq 1 ]; then
- echo "* Aficonf instalado el $fechaconf por UID $userconf"
+ echo "* Aficonf instalado el $fechaconf por $userconf"
fi
if [ "$havemonio" -eq 1 ]; then
- echo "* Afimonio instalado el $fechaconf por UID $usermonio"
+ echo "* Afimonio instalado el $fechaconf por $usermonio"
fi
cat <<MARCA
*
mkdir -p $DATADIR/{aprocesar,enproceso,rechazadas,procesadas}
fi
echo ">> Moviendo Archivos....."
- cp $INSTDIR/$comando $BINDIR
- cp $INSTDIR/umbrales.param $CONFDIR
- #cp $INSTDIR/*.data $DATADIR/aprocesar
+ cp "$INSTDIR/$comando" "$BINDIR"
+ cp "$INSTDIR/oridesti.txt" "$CONFDIR"
# Guardo los datos en el archivo de configuracion
- userid=`id | sed 's/(.*//;s/uid=//'`
- fecha=$(date)
+ userid=$LOGNAME
+ fecha=$(date +%d/%m/%Y)
case $comando in
- "afimonio" ) numline=30;
- havemonio=1;
- usermonio=$userid;
- fechamonio=$fecha;;
- "aficonf" ) numline=20;
+ "afimonio" ) numline=30;
+ havemonio=1;
+ usermonio=$userid;
+ fechamonio=$fecha;;
+ "aficonf" ) numline=20;
haveconf=1;
userconf=$userid;
fechaconf=$fecha;;
- "antifraude.pl" ) numline=10;
- havefraude=1;
- userfraude=$userid;
- fechafraude=$fecha;;
+ "antifraude.pl" ) numline=10;
+ havefraude=1;
+ userfraude=$userid;
+ fechafraude=$fecha;;
esac
changeLine "$CONFFILE" "$numline" "Comando $comando"