1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gitlab_ynh.git synced 2024-09-03 18:36:35 +02:00

Update upgrade

This commit is contained in:
bourreP 2018-03-29 13:06:01 +02:00 committed by GitHub
parent 4b8d7c3e1b
commit 255c1363a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,16 +3,7 @@
# Exit on command errors and treat unset variables as an error
set -eu
# This is a multi-instance app, meaning it can be installed several times independently
# The id of the app as stated in the manifest is available as $YNH_APP_ID
# The instance number is available as $YNH_APP_INSTANCE_NUMBER (equals "1", "2", ...)
# The app instance name is available as $YNH_APP_INSTANCE_NAME
# - the first time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample
# - the second time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample__2
# - ynhexample__{N} for the subsequent installations, with N=3,4, ...
# The app instance name is probably what you are interested the most, since this is
# guaranteed to be unique. This is a good unique identifier to define installation path,
# db names, ...
# See comments in install script
app=$YNH_APP_INSTANCE_NAME
# Source YunoHost helpers
@ -24,6 +15,8 @@ path_url=$(ynh_app_setting_get "$app" path_url)
portNginx=$(ynh_find_port 8080)
portUnicorn=$(ynh_find_port 9080)
path_url=${path_url%/}
# if path do not begin with / add a / at the begining
if [ "${path_url:0:1}" != "/" ]; then
path_url="/$path_url"