2018-02-08 11:42:15 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-02-08 17:25:54 +01:00
|
|
|
#=================================================
|
2020-11-18 17:59:20 +01:00
|
|
|
# GENERIC STARTING
|
2018-02-08 17:25:54 +01:00
|
|
|
#=================================================
|
2018-02-08 11:42:15 +01:00
|
|
|
# IMPORT GENERIC HELPERS
|
2020-11-18 17:59:20 +01:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
2018-02-08 11:42:15 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2020-11-18 17:59:20 +01:00
|
|
|
#=================================================
|
2018-02-08 11:42:15 +01:00
|
|
|
# RETRIEVE ARGUMENTS
|
2020-11-18 17:59:20 +01:00
|
|
|
#=================================================
|
|
|
|
|
2018-02-08 11:42:15 +01:00
|
|
|
old_domain=$YNH_APP_OLD_DOMAIN
|
2018-05-19 20:42:24 +02:00
|
|
|
domain=$YNH_APP_NEW_DOMAIN
|
2020-11-18 17:59:20 +01:00
|
|
|
|
2018-05-19 20:42:24 +02:00
|
|
|
path_url=$(ynh_normalize_url_path ${YNH_APP_NEW_PATH:-'/'})
|
2018-02-08 11:42:15 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2020-11-20 09:28:52 +01:00
|
|
|
db_pwd=$(ynh_app_setting_get "$app" mysqlpwd)
|
2018-02-08 11:42:15 +01:00
|
|
|
admin=$(ynh_app_setting_get "$app" adminusername)
|
|
|
|
key=$(ynh_app_setting_get "$app" secret_key)
|
|
|
|
port=$(ynh_app_setting_get "$app" web_port)
|
2018-05-19 20:42:24 +02:00
|
|
|
is_public=$(ynh_app_setting_get "$app" is_public)
|
2018-02-08 11:42:15 +01:00
|
|
|
|
2018-02-08 17:25:54 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
|
2018-02-08 11:42:15 +01:00
|
|
|
# Change the domain for nginx
|
2018-05-19 20:42:24 +02:00
|
|
|
if [ "$old_domain" != "$domain" ]
|
2018-02-08 11:42:15 +01:00
|
|
|
then
|
|
|
|
# Delete file checksum for the old conf file location
|
2018-05-19 20:42:24 +02:00
|
|
|
ynh_delete_file_checksum "/etc/nginx/conf.d/$old_domain.d/$app.conf"
|
|
|
|
|
|
|
|
mv "/etc/nginx/conf.d/$old_domain.d/$app.conf" "/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
2018-02-08 11:42:15 +01:00
|
|
|
# Store file checksum for the new config file location
|
2018-05-19 20:42:24 +02:00
|
|
|
ynh_store_file_checksum "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2018-02-08 11:42:15 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
config_nginx
|
|
|
|
|
|
|
|
# Update gogs config
|
|
|
|
config_gogs
|
|
|
|
|
|
|
|
# RELOAD services
|
2018-02-10 18:04:23 +01:00
|
|
|
ynh_check_starting "INFO] Listen: http://0.0.0.0:" "/var/log/$app/gogs.log"
|
|
|
|
sleep 1
|