summaryrefslogtreecommitdiffstats
path: root/server/bin/setclientmode
diff options
context:
space:
mode:
Diffstat (limited to 'server/bin/setclientmode')
-rwxr-xr-xserver/bin/setclientmode4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/bin/setclientmode b/server/bin/setclientmode
index 84ef0f95..02e5be59 100755
--- a/server/bin/setclientmode
+++ b/server/bin/setclientmode
@@ -21,14 +21,14 @@ MYCNF=/tmp/.my.cnf.$$
# Control básico de errores.
if [ $# -ne 2 ]; then
echo "$PROG: Error de ejecución"
- echo "Formato: $PROG template [pc_name|group_name]"
+ echo "Formato: $PROG PLANTILLA [NOMBRE_PC|NOMBRE_AULA]"
exit 1
fi
if [ ! -r $SERVERCONF ]; then
echo "$PROG: Sin acceso a fichero de configuración"
exit 2
fi
-TEMPLATE=$(grep "^#.* $1 *$" $PXEDIR/templates/*|cut -d: -f1)
+TEMPLATE=$(grep -l "^#.* $1 *$" $PXEDIR/templates/*)
if [ -z "$TEMPLATE" ]; then
echo "No existe archivo platilla: $1"
exit