diff options
-rwxr-xr-x | admin/Interface/CambiarAcceso | 7 | ||||
-rw-r--r-- | client/boot-tools/INSTALL.es.txt | 6 | ||||
-rw-r--r-- | client/boot-tools/kernelParameterOG.es.txt | 8 | ||||
-rw-r--r-- | installer/INSTALL.es.txt | 2 | ||||
-rw-r--r-- | server/tftpboot/NetbootPXE.es.txt | 7 |
5 files changed, 15 insertions, 15 deletions
diff --git a/admin/Interface/CambiarAcceso b/admin/Interface/CambiarAcceso index aac3316a..64516e4f 100755 --- a/admin/Interface/CambiarAcceso +++ b/admin/Interface/CambiarAcceso @@ -42,10 +42,11 @@ esac # Desmontar repositorio y volver a montarlo con el modo adecuado. umount $OGIMG ogEcho info "$PROG: Montar repositorio $REPO por $PROTO en modo $1" -MNTOPTS="$(awk -F\" '$1~/OPTIONS=$/ {print $2;}' /scripts/ogfunctions 2>/dev/null)" -MNTOPTS=${MNTOPTS:-"-o username=opengnsys,password=og"} case "$PROTO" in nfs) mount -t nfs $REPOIP:$OGIMG $OGIMG -o $MODE ;; - smb) mount -t cifs //$REPOIP/ogimages $OGIMG $MNTOPTS,$MODE,serverino,acl ;; + smb) PASS=$(grep "^[ ]*\(export \)\?OPTIONS=" /scripts/ogfunctions 2>&1 | \ + sed 's/\(.*\)pass=\(\w*\)\(.*\)/\2/') + PASS=${PASS:-"og"} + mount.cifs //$REPOIP/ogimages $OGIMG -o rw,serverino,acl,username=opengnsys,password=$PASS esac diff --git a/client/boot-tools/INSTALL.es.txt b/client/boot-tools/INSTALL.es.txt index 9a52346f..7c580934 100644 --- a/client/boot-tools/INSTALL.es.txt +++ b/client/boot-tools/INSTALL.es.txt @@ -4,9 +4,9 @@ OpenGnSys Client boot-tools INSTALL.es.txt Advertencia previa: ----------------------------- -- No usar este instalador en un OpenGnsys en producción. -- Se puede ejecutar este scripts desde un sistema ubuntu 10.04, 11.04 - - Mas información http://www.opengnsys.es/wiki/ClienteInitrdDSGenerarloV1.0.2 +- No usar este instalador en un sistema OpenGnNys en producción. +- Se puede ejecutar este script desde un sistema Ubuntu 10.04, 11.04 +- Mas información http://www.opengnsys.es/wiki/ClienteInitrdDSGenerarloV1.0.2 Requisitos iniciales diff --git a/client/boot-tools/kernelParameterOG.es.txt b/client/boot-tools/kernelParameterOG.es.txt index 8374f7d3..7f8a15b2 100644 --- a/client/boot-tools/kernelParameterOG.es.txt +++ b/client/boot-tools/kernelParameterOG.es.txt @@ -1,7 +1,5 @@ +Ver información completa en: + http://www.opengnsys.es/wiki/InitrdClienteSecondFileSystem -ver http://www.opengnsys.es/wiki/InitrdClienteSecondFileSystem - - - - + diff --git a/installer/INSTALL.es.txt b/installer/INSTALL.es.txt index e68f83c6..568da793 100644 --- a/installer/INSTALL.es.txt +++ b/installer/INSTALL.es.txt @@ -1,4 +1,4 @@ -Instalación y Actualización de OpenGnSys 1.0.1 +Instalación y Actualización de OpenGnSys 1.0.2 ============================================== diff --git a/server/tftpboot/NetbootPXE.es.txt b/server/tftpboot/NetbootPXE.es.txt index 8956cd3e..3efd8371 100644 --- a/server/tftpboot/NetbootPXE.es.txt +++ b/server/tftpboot/NetbootPXE.es.txt @@ -1,10 +1,11 @@ +Como cambiar el arranque en red PXELinux por Grub4DOS +===================================================== -OpenGnsys usa como gestor pxe, el binario pxelinux.0 +OpenGnSys 1.0.1 usa como gestor PXE el binario pxelinux.0, sin embargo, la actulización a OpenGnSys 1.0.2 sustituye automáticamente dicho gestor por Grub4Dos. -También ofrece la posibilidad de usar el bianrio grldr que se está evaluando para solucionar algunas incidencias. - +Realizar los siguientes pasos para sutituir "a mano" PXELinux por Grub4Dos como gestor de arranque sin usar el proceso de actualización de OpenGnSys. Activar el grldr del grub4dos |