From 3242350d3f6ca73094b831a9526d965e7e9ebadb Mon Sep 17 00:00:00 2001 From: Javier Sánchez Parra Date: Wed, 22 Apr 2020 12:50:46 +0200 Subject: #973 Restart OpenGnsys service after stopping it After updating OpenGnsys with the script, if there is a new version of the ogAdmServer, the script stop the service. So, you had to start manually the service once the update has finished. This commit makes a restart of the service after copying the new version of the ogAdmServer. --- installer/opengnsys_update.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/installer/opengnsys_update.sh b/installer/opengnsys_update.sh index 70d612c9..21587723 100755 --- a/installer/opengnsys_update.sh +++ b/installer/opengnsys_update.sh @@ -1029,11 +1029,13 @@ function moveNewService() # Comparar los ficheros. if ! diff -q $1 $2/$(basename $1) &>/dev/null; then # Parar los servicios si fuese necesario. - [ -z "$NEWSERVICES" ] && service="opengnsys" $STOPSERVICE + service="opengnsys" + [ -z "$NEWSERVICES" ] && $STOPSERVICE # Nuevo servicio. NEWSERVICES="$NEWSERVICES $(basename $1)" # Mover el nuevo fichero de servicio mv $1 $2 + $STARTSERVICE fi } -- cgit v1.2.3-18-g5258