2018-02-25 21:45:24 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-17 23:33:50 +01:00
|
|
|
# Import common cmd
|
|
|
|
source ./experimental_helper.sh
|
|
|
|
source ./_common.sh
|
|
|
|
|
2018-02-25 21:45:24 +01:00
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2019-09-10 22:43:45 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2018-02-25 21:45:24 +01:00
|
|
|
|
|
|
|
# RETRIEVE ARGUMENTS
|
|
|
|
old_domain=$YNH_APP_OLD_DOMAIN
|
2019-02-14 09:52:14 +01:00
|
|
|
domain=$YNH_APP_NEW_DOMAIN
|
2019-10-01 21:34:41 +02:00
|
|
|
path_url=$(ynh_normalize_url_path --path_url ${YNH_APP_NEW_PATH:-'/'})
|
2018-02-25 21:45:24 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2022-04-23 19:40:27 +02:00
|
|
|
db_password=$(ynh_app_setting_get --app $app --key mysqlpwd)
|
2019-06-09 21:05:14 +02:00
|
|
|
admin=$(ynh_app_setting_get --app $app --key adminusername)
|
|
|
|
key=$(ynh_app_setting_get --app $app --key secret_key)
|
2022-07-19 23:47:28 +02:00
|
|
|
lfs_key=$(ynh_app_setting_get --app $app --key lfs_key)
|
2019-06-09 21:05:14 +02:00
|
|
|
port=$(ynh_app_setting_get --app $app --key web_port)
|
2019-08-01 15:32:59 +02:00
|
|
|
upstream_version=$(ynh_app_setting_get $app upstream_version)
|
2018-02-25 21:45:24 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
|
2019-09-10 22:43:45 +02:00
|
|
|
ynh_script_progression --message="Updating nginx configuration..."
|
|
|
|
|
2018-02-25 21:45:24 +01:00
|
|
|
# MODIFY URL IN NGINX CONF
|
|
|
|
nginx_conf_path=/etc/nginx/conf.d/$old_domain.d/$app.conf
|
|
|
|
|
|
|
|
# Change the domain for nginx
|
2019-02-14 09:52:14 +01:00
|
|
|
# Change the domain for nginx
|
|
|
|
if [[ "$old_domain" != "$domain" ]]; then
|
2018-02-25 21:45:24 +01:00
|
|
|
# Delete file checksum for the old conf file location
|
2019-08-01 14:01:59 +02:00
|
|
|
ynh_delete_file_checksum --file "$nginx_conf_path"
|
2019-02-14 09:52:14 +01:00
|
|
|
mv $nginx_conf_path /etc/nginx/conf.d/$domain.d/$app.conf
|
2018-02-25 21:45:24 +01:00
|
|
|
# Store file checksum for the new config file location
|
2019-08-01 14:01:59 +02:00
|
|
|
ynh_store_file_checksum --file "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2018-02-25 21:45:24 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
config_nginx
|
|
|
|
|
2018-06-15 22:08:34 +02:00
|
|
|
# Update gitea config
|
2019-09-10 22:43:45 +02:00
|
|
|
ynh_script_progression --message="Updating gitea configuration..."
|
2018-06-15 22:08:34 +02:00
|
|
|
config_gitea
|
2018-02-25 21:45:24 +01:00
|
|
|
|
|
|
|
# RELOAD services
|
2019-09-10 22:43:45 +02:00
|
|
|
ynh_script_progression --message="Starting services..."
|
2022-04-23 19:40:27 +02:00
|
|
|
ynh_systemd_action -l "Starting new Web server: tcp:127.0.0.1:" -p "/var/log/$app/gitea.log" -t 10 -a restart
|
2019-02-16 13:43:04 +01:00
|
|
|
sleep 1
|
2019-02-16 12:59:32 +01:00
|
|
|
|
|
|
|
# Store the checksum with the 'INTERNAL_TOKEN' value.
|
|
|
|
# Should be removed when the issue https://github.com/go-gitea/gitea/issues/3246 is fixed
|
2019-06-09 21:05:14 +02:00
|
|
|
ynh_store_file_checksum --file "$final_path/custom/conf/app.ini"
|
2019-10-27 14:54:35 +01:00
|
|
|
|
|
|
|
ynh_script_progression --message="Change of URL completed for $app" --last
|