summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2020-04-22 12:50:46 +0200
committerOpenGnSys Support Team <soporte-og@soleta.eu>2020-06-02 12:32:36 +0200
commit646ef927780280c15ca91ec08d04fbfaa876c65f (patch)
tree9e17b96fcfea0b2854bdc14c403c2c2af2ad3a98
parentf5fa6dd4d39df97db57cd018929a9fdec1fa5e1b (diff)
#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.
-rwxr-xr-xinstaller/opengnsys_update.sh4
1 files changed, 3 insertions, 1 deletions
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
}