diff options
author | jcxifre <jcxifre@unizar.es> | 2011-03-15 10:04:03 +0000 |
---|---|---|
committer | jcxifre <jcxifre@unizar.es> | 2011-03-15 10:04:03 +0000 |
commit | 03882ae062062040efcf09cd831cc948dd88895d (patch) | |
tree | e0f954d983525cf823b3f7fe8439c4b237926000 /installer | |
parent | 6ef9f238a9cd28577e00fe3b2cb2a42d34c99080 (diff) |
Solucionado error no descargaba correctamente el cliente. http://www.opengnsys.es/ticket/335
git-svn-id: https://opengnsys.es/svn/branches/version1.0@1543 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'installer')
-rwxr-xr-x | installer/opengnsys_update.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/opengnsys_update.sh b/installer/opengnsys_update.sh index d72bc271..91649044 100755 --- a/installer/opengnsys_update.sh +++ b/installer/opengnsys_update.sh @@ -442,12 +442,12 @@ function updateClient() echoAndLog "${FUNCNAME}(): Loading Client" # Descargar y descomprimir cliente ogclient - wget $DOWNLOADURL/20 -O $TMPFILE + wget $DOWNLOADURL/$FILENAME -O $TMPFILE if [ ! -s $TMPFILE ]; then errorAndLog "${FUNCNAME}(): Error loading OpenGnSys Client" return 1 fi - echoAndLog "${FUNCNAME}(): Extranting Client files" + echoAndLog "${FUNCNAME}(): Extracting Client files" tar xzvf $TMPFILE -C $INSTALL_TARGET/tftpboot rm -f $TMPFILE # Usar la versión más reciente del Kernel y del Initrd para el cliente. |