summaryrefslogtreecommitdiffstats
path: root/installer
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2017-06-21 08:59:35 +0000
committerramon <ramongomez@us.es>2017-06-21 08:59:35 +0000
commita905a3b5249ff0d4126a6f734fa0303badca9f84 (patch)
tree49bf00c906cb6257f3c2869c1780b8dc1006e077 /installer
parent68e57955ba7ca572a17f731543b21cf6b2f089ad (diff)
#730: Evitar que script de actualización se quede parado esperando entrada de datos y no modificar BD según el kernel del ogLive por defecto.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5371 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'installer')
-rwxr-xr-xinstaller/opengnsys_update.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/installer/opengnsys_update.sh b/installer/opengnsys_update.sh
index fc09d496..82a84b75 100755
--- a/installer/opengnsys_update.sh
+++ b/installer/opengnsys_update.sh
@@ -918,7 +918,6 @@ function updateClient()
local TARGETLENGTH
local OGINITRD
local SAMBAPASS
- local KERNELVERSION
# Comprobar si debe convertirse el antiguo cliente al nuevo formato ogLive.
if oglivecli check | grep -q "oglivecli convert"; then
@@ -940,15 +939,6 @@ function updateClient()
echoAndLog "${FUNCNAME}(): Updatting ogLive"
oglivecli install $FILENAME
- # Obtiene versión del Kernel del cliente (con 2 decimales).
- KERNELVERSION=$(jq -r ".oglive[.default].kernel" |
- awk -F. '{printf("%d",$1); $1=""; printf(".%02d",$0)}')
- # Actaulizar la base de datos adaptada al Kernel del cliente.
- OPENGNSYS_DBUPDATEFILE="$WORKDIR/opengnsys/admin/Database/$OPENGNSYS_DATABASE-$INSTVERSION-postinst.sql"
- if [ -f $OPENGNSYS_DBUPDATEFILE ]; then
- perl -pi -e "s/KERNELVERSION/$KERNELVERSION/g" $OPENGNSYS_DBUPDATEFILE
- importSqlFile $OPENGNSYS_DBUSER $OPENGNSYS_DBPASSWORD $OPENGNSYS_DATABASE $OPENGNSYS_DBUPDATEFILE
- fi
CLIENTUPDATED=${FILENAME%.*}
echoAndLog "${FUNCNAME}(): ogLive update successfully"