summaryrefslogtreecommitdiffstats
path: root/server/bin/setclientmode
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2011-10-03 09:23:55 +0000
committerramon <ramongomez@us.es>2011-10-03 09:23:55 +0000
commit75a296b717451278d9aaa92738dd9b317773f512 (patch)
treee5ab4686e47e5332d51d92f4a0022f2c5d81da41 /server/bin/setclientmode
parent5c8cf58c290719c68bd2151449c9dd50a5084406 (diff)
Versión 1.0.2: configuración DHCP para Grub4Dos, suscitución función {{{ogBoot}}} para Grub4Dos, comandos para listar y cambiar plantilla de arranque y cambios en el actualizador (modifica #444)
git-svn-id: https://opengnsys.es/svn/branches/version1.0@2331 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'server/bin/setclientmode')
-rwxr-xr-xserver/bin/setclientmode17
1 files changed, 9 insertions, 8 deletions
diff --git a/server/bin/setclientmode b/server/bin/setclientmode
index 0cc57002..a934783e 100755
--- a/server/bin/setclientmode
+++ b/server/bin/setclientmode
@@ -11,7 +11,8 @@
PROG=$(basename $0)
OPENGNSYS=${OPENGNSYS:-"/opt/opengnsys"}
SERVERCONF=$OPENGNSYS/etc/ogAdmServer.cfg
-PXEDIR=$OPENGNSYS/tftpboot/pxelinux.cfg
+PXEDIR=$OPENGNSYS/tftpboot/menu.lst
+TEMPLATE="$PXEDIR/templates/$1"
LOGFILE=$OPENGNSYS/log/opengnsys.log
# Control básico de errores.
@@ -24,8 +25,8 @@ if [ ! -r $SERVERCONF ]; then
echo "$PROG: Sin acceso a fichero de configuración"
exit 2
fi
-if [ ! -e $PXEDIR/"$1" ]; then
- echo "No existe archivo platilla: $PXEDIR/$1"
+if [ ! -e $TEMPLATE ]; then
+ echo "No existe archivo platilla: $TEMPLATE"
exit
fi
@@ -49,18 +50,18 @@ if [ -z "$ETHERNET" ]; then
exit 1
fi
-# Creamos los enlaces
-# PXE no permite enlaces simbolicos y las letras han de ir en minuscula
+# Copiar fichero de configuración y actualizar base de datos.
date +"%b %d %T $PROG: Configurando \"$1\" en \"$2\"" | tee -a $LOGFILE
NPC=0
for AUX in $ETHERNET; do
date +"%b %d %T $PROG: Detectada ethernet \"$AUX\" en \"$2\"" | tee -a $LOGFILE
- AUX=$(echo $AUX | awk '{print tolower($0)}')
AUX="01-${AUX:0:2}-${AUX:2:2}-${AUX:4:2}-${AUX:6:2}-${AUX:8:2}-${AUX:10:2}"
# Si existe anteriormente lo borra
[ -e $PXEDIR/$AUX ] && rm $PXEDIR/$AUX
- if [ "$1" != "default" ]; then
- ln $PXEDIR/"$1" $PXEDIR/$AUX
+ if [ "$1" != "default" ]; thenm
+ cp -a $TEMPLATE $PXEDIR/$AUX
+ mysql -u "$USUARIO" -p"$PASSWORD" -D "$CATALOG" -N -e \
+ "UPDATE ordenadores SET arranque=\"$1\" WHERE mac=\"$ETHERNET\";"
fi
let NPC=NPC+1
done