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

Just upgrade gitlab

This commit is contained in:
bourreP 2018-03-30 11:32:28 +02:00 committed by GitHub
parent 255c1363a8
commit 22b24868f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,48 +3,8 @@
# Exit on command errors and treat unset variables as an error # Exit on command errors and treat unset variables as an error
set -eu set -eu
# See comments in install script
app=$YNH_APP_INSTANCE_NAME
# Source YunoHost helpers # Source YunoHost helpers
source /usr/share/yunohost/helpers source /usr/share/yunohost/helpers
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
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"
fi
sudo apt-get update sudo apt-get update
sudo apt-get install -yy gitlab-ce sudo apt-get install -yy gitlab-ce
# Gitlab configuration
sed -i "s@GENERATED_EXTERNAL_URL@https://$domain@" ../conf/gitlab.rb
sed -i "s@PORTNGINX@$portNginx@" ../conf/gitlab.rb
sed -i "s@PORTUNICORN@$portUnicorn@" ../conf/gitlab.rb
sudo cp -f ../conf/gitlab.rb /etc/gitlab/gitlab.rb
sudo gitlab-ctl reconfigure
# Set permissions to app files
# you may need to make some file and/or directory writeable by www-data (nginx user)
# sudo chown -R root: $src_path
# Modify Nginx configuration file and copy it to Nginx conf directory
nginx_conf=../conf/nginx.conf
sed -i "s@YNH_WWW_PATH@$path_url@g" $nginx_conf
sed -i "s@PORT@$portNginx@g" $nginx_conf
sudo cp $nginx_conf /etc/nginx/conf.d/$domain.d/$app.conf
# Reload services
sudo yunohost app ssowatconf
sudo service nginx reload