summaryrefslogtreecommitdiffstats
path: root/client/boot-tools/boottoolsfunctions.lib
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2017-01-25 12:35:12 +0000
committerramon <ramongomez@us.es>2017-01-25 12:35:12 +0000
commite4060f148911b4dbac5a2dcff46dda1201a7f609 (patch)
tree5dd907761a52995434016ea84e3b212a8f3124d6 /client/boot-tools/boottoolsfunctions.lib
parentbec0f2ffc0b8ce43e7bfe8b692c06b35755e8117 (diff)
#724 #768: Cambios en generación de cliente ogLive:
* Script {{{boottoolsgenerator.sh}}} soporta parámetro para generar ogLive basado en distribuciones soportadas. * Soporta variable del kernel {{{oglivedir}}} con subdirectorio de instalación de ogLive. * Dejar de compilar paquetes incluidos en distribuciones Ubuntu. * Procesar ficheros JSON en scripts BASH. git-svn-id: https://opengnsys.es/svn/branches/version1.1@5161 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'client/boot-tools/boottoolsfunctions.lib')
-rwxr-xr-xclient/boot-tools/boottoolsfunctions.lib8
1 files changed, 6 insertions, 2 deletions
diff --git a/client/boot-tools/boottoolsfunctions.lib b/client/boot-tools/boottoolsfunctions.lib
index c87d416a..754ebad3 100755
--- a/client/boot-tools/boottoolsfunctions.lib
+++ b/client/boot-tools/boottoolsfunctions.lib
@@ -107,11 +107,11 @@ case "${1,,}" in
xenial-4.8) # ogLive 1.1.0-rc5 basado en Ubuntu 16.04 y Kernel 4.8.
OSDISTRIB="ubuntu"
OSCODENAME="xenial"
- OSRELEASE="4.8.0-30-generic"
+ OSRELEASE="4.8.0-34-generic"
OSARCH="i386"
OSHTTP="http://es.archive.ubuntu.com/ubuntu/"
;;
- host | *) # ogLive basado en la distribución del servidor.
+ host) # ogLive basado en la distribución del servidor.
OSDISTRIB=$(lsb_release -is)
OSCODENAME=$(lsb_release -cs)
OSRELEASE=$(uname -a | awk '{print $3}')
@@ -119,6 +119,10 @@ case "${1,,}" in
OSARCH="i386"
export OSHTTP="http://es.archive.ubuntu.com/ubuntu/"
;;
+ *) # Parámetro desconocido
+ echo "Parámetro no válido."
+ exit 1
+ ;;
esac
SVNURL="http://opengnsys.es/svn/branches/version1.1/client"
VERSIONSVN=$(LANG=C svn info $SVNURL | awk '/Rev:/ {print "r"$4}')