summaryrefslogtreecommitdiffstats
path: root/installer/opengnsys_installer.sh
diff options
context:
space:
mode:
authorIrina Gómez <irinagomez@us.es>2021-03-04 11:09:09 +0100
committerIrina Gómez <irinagomez@us.es>2021-03-04 11:09:09 +0100
commite98f7d14f1207506757ef9681d8aa4834024717a (patch)
tree185cbfd840cc773ed208b11e9c4fc9d8ea21342d /installer/opengnsys_installer.sh
parentfa46368c6c273cf47097ce3b08798ec538dfcedc (diff)
#1026 The installation and upgrade scripts display messages with the OpenGnsys version prerequisites; in case of update, they also show the current version.
Diffstat (limited to 'installer/opengnsys_installer.sh')
-rwxr-xr-xinstaller/opengnsys_installer.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/installer/opengnsys_installer.sh b/installer/opengnsys_installer.sh
index 09a1ee5d..cab94c9e 100755
--- a/installer/opengnsys_installer.sh
+++ b/installer/opengnsys_installer.sh
@@ -1657,6 +1657,13 @@ if cat $INSTALL_TARGET/doc/VERSION.* &>/dev/null; then
exit 2
fi
+echoAndLog "The OpenGnsys version 1.2.0 installation was tested with full functionality on Ubuntu 18.04 with PHP 7.2."
+echo -n "Do you want to continue? [y/N]: "
+read -r GO_ON
+if [ "${GO_ON^^}" != "Y" ]; then
+ echoAndLog "We left the installation." && exit
+fi
+
echoAndLog "OpenGnsys installation begins at $(date)"
# Introducir datos de configuración y establecer variables globales.
userData