diff options
author | Ramón M. Gómez <ramongomez@us.es> | 2018-07-09 13:51:46 +0200 |
---|---|---|
committer | Ramón M. Gómez <ramongomez@us.es> | 2018-07-09 13:51:46 +0200 |
commit | 65dd71b8035f8cf6e3b3ea1fa7cff838c21d43d2 (patch) | |
tree | bf80f37f2c4c16577b5ac1545c388fe3bd2e93f2 | |
parent | a58595a2510d05630d9282f915759ad272122ee8 (diff) |
#847: Correcting errata when obtaining revision date (commit SHA1 is not verified); updating change log.
-rwxr-xr-x | client/boot-tools/boottoolsfunctions.lib | 2 | ||||
-rw-r--r-- | doc/CHANGELOG.es.txt | 8 | ||||
-rw-r--r-- | installer/vagrant/Vagrantfile-boottools-vbox | 2 |
3 files changed, 8 insertions, 4 deletions
diff --git a/client/boot-tools/boottoolsfunctions.lib b/client/boot-tools/boottoolsfunctions.lib index c615a9fb..0624921d 100755 --- a/client/boot-tools/boottoolsfunctions.lib +++ b/client/boot-tools/boottoolsfunctions.lib @@ -142,7 +142,7 @@ case "${1,,}" in ;; esac SVNURL="https://github.com/opengnsys/OpenGnsys/branches/devel/client" -VERSIONSVN=$(LC_ALL=C svn info $SVNURL | awk '/Date:/ {gsub(/-/,""); print ""$4}' +VERSIONSVN=$(LC_ALL=C svn info $SVNURL | awk '/Date:/ {gsub(/-/,""); print ""$4}') NAMEISOCLIENT="$VERSIONBOOTTOOLS-$OSCODENAME-$OSRELEASE-$OSARCH-$VERSIONSVN" NAMEHOSTCLIENT="$VERSIONBOOTTOOLS-$OSCODENAME-$VERSIONSVN" export OSDISTRIB OSCODENAME OSRELEASE OSARCH OSHTTP diff --git a/doc/CHANGELOG.es.txt b/doc/CHANGELOG.es.txt index 9838335b..db9d9db3 100644 --- a/doc/CHANGELOG.es.txt +++ b/doc/CHANGELOG.es.txt @@ -3,11 +3,15 @@ LISTA DE CAMBIOS CHANGELOG.es.txt -Lista de cambios incluidos en OpenGnsys 1.1.1 Espeto ----------------------------------------------------- +Lista de cambios incluidos en OpenGnsys 1.1.1 (Espeto) +------------------------------------------------------ + +Tickets resueltos en módulo OpenGnsys Client +#852 Apagado del cliente si tiempo de espera cambia de día Tickets resueltos en módulo OpenGnsys Web Admin Console: #772 Módulo de administración web para dispositivos smartphones y tablets (no se resolverá) +#804 Conversión de todo el código php de la consola web de administración a Php7 y Mysqli (tarea) #816 Marcar ordenador de profesor #824 Iniciar sistema restaurado (no integrado) #835 Problemas al listar plantillas en Nerboot Avanzado diff --git a/installer/vagrant/Vagrantfile-boottools-vbox b/installer/vagrant/Vagrantfile-boottools-vbox index 83348f02..0c1f081b 100644 --- a/installer/vagrant/Vagrantfile-boottools-vbox +++ b/installer/vagrant/Vagrantfile-boottools-vbox @@ -19,7 +19,7 @@ sed -i "s/XKBLAYOUT=.*/XKBLAYOUT=\"${LANG%_*}\"/" /etc/default/keyboard dpkg-reconfigure -fnoninteractive console-setup # Install dependencies. apt-get update -y -apt-get install -y subversion +apt-get install -y subversion syslinux syslinux-efi syslinux-utils # Prepare environment. groupadd opengnsys mkdir -p /opt/opengnsys/client /tmp/opengnsys_installer/opengnsys |