diff options
author | ramon <ramongomez@us.es> | 2016-12-20 08:51:51 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2016-12-20 08:51:51 +0000 |
commit | 6acd145eca163ccace7171e1bb21c873bde62d15 (patch) | |
tree | 94c6e5ae6c1dcfc03e624363ff770027823016f0 /client/boot-tools/boottoolsfunctions.lib | |
parent | 606a0c7fdab82517dec9148a8dd952cbb6d6aa13 (diff) |
#768: Crear clientes con soporte de variable {{{ogclient}}} para usar varios ogLive, define ogLive por defecto compatible con los clientes OGClient y con soporte basado en Ubuntu 16.04 con Kernel 4.8.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5131 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'client/boot-tools/boottoolsfunctions.lib')
-rwxr-xr-x | client/boot-tools/boottoolsfunctions.lib | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/client/boot-tools/boottoolsfunctions.lib b/client/boot-tools/boottoolsfunctions.lib index 819bbac3..c87d416a 100755 --- a/client/boot-tools/boottoolsfunctions.lib +++ b/client/boot-tools/boottoolsfunctions.lib @@ -97,13 +97,20 @@ case "${1,,}" in OSARCH="i386" OSHTTP="http://es.archive.ubuntu.com/ubuntu/" ;; - xenial) # ogLive 1.1.0-rc4 basado en Ubuntu 16.04. + xenial|xenial-4.4) # ogLive 1.1.0-rc4 basado en Ubuntu 16.04 y Kernel 4.4. OSDISTRIB="ubuntu" OSCODENAME="xenial" OSRELEASE="4.4.0-34-generic" OSARCH="i386" OSHTTP="http://es.archive.ubuntu.com/ubuntu/" ;; + 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" + OSARCH="i386" + OSHTTP="http://es.archive.ubuntu.com/ubuntu/" + ;; host | *) # ogLive basado en la distribuciĆ³n del servidor. OSDISTRIB=$(lsb_release -is) OSCODENAME=$(lsb_release -cs) |