diff options
author | Ramón M. Gómez <ramongomez@us.es> | 2019-09-20 09:29:03 +0200 |
---|---|---|
committer | Ramón M. Gómez <ramongomez@us.es> | 2019-09-20 09:29:03 +0200 |
commit | 2e1b900bd82726ae082613887fadbdd58055f4ad (patch) | |
tree | 38538892dc2b1339a4ee26343a08629af9678895 | |
parent | 8b5283a81fda4ef27f9bfeafced21be658529196 (diff) |
#914: Installed/Update newest ogLive version.
-rwxr-xr-x | installer/opengnsys_installer.sh | 2 | ||||
-rwxr-xr-x | installer/opengnsys_update.sh | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/installer/opengnsys_installer.sh b/installer/opengnsys_installer.sh index f2451872..89c94082 100755 --- a/installer/opengnsys_installer.sh +++ b/installer/opengnsys_installer.sh @@ -52,7 +52,7 @@ function userData () DEFAULT_OPENGNSYS_DB_USER="usuog" # Usuario por defecto de acceso a la base de datos DEFAULT_OPENGNSYS_DB_PASSWD="passusuog" # Clave por defecto de acceso a la base de datos DEFAULT_OPENGNSYS_CLIENT_PASSWD="og" # Clave por defecto de acceso del cliente - DEFAULT_OGLIVE="ogLive-bionic-5.0.0-15-generic-amd64-r20190605.527cd97.iso" # Cliente ogLive + DEFAULT_OGLIVE="ogLive-bionic-5.0.0-27-generic-amd64-r20190830.7208cc9.iso" # Cliente ogLive echo -e "\\nOpenGnsys Installation" echo "==============================" diff --git a/installer/opengnsys_update.sh b/installer/opengnsys_update.sh index dabd6177..23d3e5ac 100755 --- a/installer/opengnsys_update.sh +++ b/installer/opengnsys_update.sh @@ -1014,7 +1014,7 @@ function compileServices() function updateClient() { #local FILENAME=ogLive-precise-3.2.0-23-generic-r5159.iso # 1.1.0-rc6 (32-bit) - local FILENAME=ogLive-bionic-5.0.0-15-generic-amd64-r20190605.527cd97.iso # 1.1.1-rc4 + local FILENAME=ogLive-bionic-5.0.0-27-generic-amd64-r20190830.7208cc9.iso # 1.1.1-rc5 local SOURCEFILE=$DOWNLOADURL/$FILENAME local TARGETFILE=$(oglivecli config download-dir)/$FILENAME local SOURCELENGTH @@ -1042,7 +1042,7 @@ function updateClient() echoAndLog "${FUNCNAME}(): Updatting ogLive client" oglivecli install $FILENAME - CLIENTUPDATED=${FILENAME%.*} + INSTALLEDOGLIVE=${FILENAME%.*} echoAndLog "${FUNCNAME}(): ogLive successfully updated" else @@ -1135,8 +1135,8 @@ function updateSummary() echoAndLog "Warnings:" echoAndLog " - You must to clear web browser cache before loading OpenGnsys page" echoAndLog " - Generated new key to access Repository REST API (file ogAdmRepo.cfg)" - if [ -n "$CLIENTUPDATED" ]; then - echoAndLog " - ogLive Client is updated to: $CLIENTUPDATED" + if [ -n "$INSTALLEDOGLIVE" ]; then + echoAndLog " - Installed new ogLive Client: $INSTALLEDOGLIVE" fi if [ -n "$MYSQLCONFIG" ]; then echoAndLog " - MySQL must be reconfigured, run next code as DB root user and restart service:" |