# Le pido un rootpath donde se instalara este comando en particular
is_writeable=0
while [ $is_writeable -eq 0 ]; do
- leer ">> Ingrese la ruta de instalación" "$CURRDIR/grupoNN" userpath
+ leer ">> Ingrese la ruta de instalación" "$CURRDIR" userpath
if [ -n "$userpath" ]; then
ROOTPATH=$userpath
if [ -w "${userpath%/*}" ]; then is_writeable=1
else echo ">> ERROR: No es posible crear dicho directorio"
fi
else
- ROOTPATH="$CURRDIR/grupoNN"
+ ROOTPATH="$CURRDIR"
is_writible=1
fi
done
cp "$INSTDIR/$comando" "$BINDIR"
chmod u+x "$BINDIR/$comando"
- # Copio umbrales y oridesti una sola vez
+ # Copio umbrales, oridesti y utilities una sola vez
if [ ! -f "$OWNCONFDIR/oridesti.txt" ]; then
cp "$INSTDIR/oridesti.txt" "$OWNCONFDIR"
fi
if [ ! -f "$OWNCONFDIR/umbrales.id" ]; then
echo 0 >> "$OWNCONFDIR/umbrales.id"
fi
+ if [ ! -f "$OWNCONFDIR/util.sh" ]; then
+ cp "$INSTDIR/util.sh" "$OWNCONFDIR"
+ fi
# Guardo los datos en el archivo de configuracion
ownconffile="$OWNCONFDIR/conf/${comando%.pl}.conf"
numline=$(($numline+1))
changeLine "$CONFFILE" "$numline" "FECINS = $fecha"
echo ">> Instalación del componente $comando completada"
+ echo ">> Presione ENTER para continuar"
read
done