diff options
-rw-r--r-- | doc/CHANGELOG.es.txt | 11 | ||||
-rwxr-xr-x | installer/opengnsys_installer.sh | 4 | ||||
-rwxr-xr-x | installer/opengnsys_update.sh | 4 |
3 files changed, 19 insertions, 0 deletions
diff --git a/doc/CHANGELOG.es.txt b/doc/CHANGELOG.es.txt index 7ab66d55..588c6c66 100644 --- a/doc/CHANGELOG.es.txt +++ b/doc/CHANGELOG.es.txt @@ -27,6 +27,7 @@ Tickets resueltos en módulo OpenGnsys Client: #746 Reloj en barra de estado del Browser del cliente Tickets resueltos en módulo OpenGnsys Server: +#385 Servicios OpenGnsys para varias VLAN aisladas (no se resolverá) #723 Cambio temporal de fichero de arranque PXE #729 Instalar en cliente la misma versión de Rsync que la del servidor #736 Mejorar la seguridad del servidor @@ -51,6 +52,16 @@ Tickets genéricos resueltos: #739 Estandarizar entornos virtuales de desarrollo con Vagrant +Lista de cambios incluidos en OpenGnSys 1.0.6b (versión de mantenimiento) +---------------------------------------------- + +Tickets resueltos en módulo OpenGnSys Server +#752 Script setserveraddr parchea parámetro de configuración UrlMenu + +Tickets genéricos resueltos: +#754 Liberar versión de mantenimiento OpenGnSys 1.0.6b en rama principal + + Lista de cambios incluidos en OpenGnSys 1.0.6a (versión de mantenimiento) ---------------------------------------------- diff --git a/installer/opengnsys_installer.sh b/installer/opengnsys_installer.sh index 3c23b87c..890b4806 100755 --- a/installer/opengnsys_installer.sh +++ b/installer/opengnsys_installer.sh @@ -1220,6 +1220,8 @@ function copyServerFiles () admin/Sources/Services/ogAdmRepoAux installer/opengnsys_uninstall.sh \ installer/opengnsys_update.sh \ + installer/opengnsys_export.sh \ + installer/opengnsys_import.sh \ doc ) local TARGETS=( tftpboot \ bin \ @@ -1229,6 +1231,8 @@ function copyServerFiles () sbin \ lib \ lib \ + lib \ + lib \ doc ) if [ ${#SOURCES[@]} != ${#TARGETS[@]} ]; then diff --git a/installer/opengnsys_update.sh b/installer/opengnsys_update.sh index dff98d1f..5e46ea70 100755 --- a/installer/opengnsys_update.sh +++ b/installer/opengnsys_update.sh @@ -678,6 +678,8 @@ function updateServerFiles() admin/Sources/Services/ogAdmRepoAux \ server/tftpboot \ installer/opengnsys_uninstall.sh \ + installer/opengnsys_export.sh \ + installer/opengnsys_import.sh \ doc ) local TARGETS=( bin \ bin \ @@ -686,6 +688,8 @@ function updateServerFiles() sbin/ogAdmRepoAux \ tftpboot \ lib/opengnsys_uninstall.sh \ + lib/opengnsys_export.sh \ + lib/opengnsys_import.sh \ doc ) if [ ${#SOURCES[@]} != ${#TARGETS[@]} ]; then |