qr_ynh/scripts/change_url

53 lines
1.5 KiB
Plaintext
Raw Normal View History

2019-08-13 21:35:51 +02:00
#!/bin/bash
source /usr/share/yunohost/helpers
old_domain=$YNH_APP_OLD_DOMAIN
old_path=$YNH_APP_OLD_PATH
new_domain=$YNH_APP_NEW_DOMAIN
new_path=$YNH_APP_NEW_PATH
app=$YNH_APP_INSTANCE_NAME
2022-03-06 02:55:10 +01:00
nginx_conf_path=/etc/nginx/conf.d/$old_domain.d/$app.conf
2022-03-03 17:58:37 +01:00
2020-10-25 16:31:23 +01:00
ynh_script_progression --message="Loading installation settings..."
2019-08-13 21:35:51 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2022-03-06 02:55:10 +01:00
ynh_script_progression --message="Backing up the app before changing its URL (may take a while)..."
2022-03-03 17:58:37 +01:00
ynh_backup_before_upgrade
ynh_clean_setup () {
ynh_secure_remove --file="/etc/nginx/conf.d/$new_domain.d/$app.conf"
ynh_restore_upgradebackup
}
ynh_abort_if_errors
2019-08-13 21:35:51 +02:00
2022-03-06 02:55:10 +01:00
ynh_script_progression --message="Updating NGINX web server configuration..."
# Change the path if needed
2019-08-13 21:35:51 +02:00
change_path=0
if [ "$old_path" != "$new_path" ]
then
change_path=1
fi
if [ $change_path -eq 1 ]
then
ynh_backup_if_checksum_is_different --file="$nginx_conf_path"
domain="$old_domain"
path_url="$new_path"
ynh_add_nginx_config
fi
2022-03-06 02:55:10 +01:00
# Change the domain if needed
change_domain=0
if [ "$old_domain" != "$new_domain" ]
then
change_domain=1
fi
2019-08-13 21:35:51 +02:00
if [ $change_domain -eq 1 ]
then
ynh_delete_file_checksum --file="$nginx_conf_path"
mv $nginx_conf_path /etc/nginx/conf.d/$new_domain.d/$app.conf
ynh_store_file_checksum --file="/etc/nginx/conf.d/$new_domain.d/$app.conf"
fi
2022-03-03 17:58:37 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
2019-08-13 21:35:51 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2022-03-03 17:58:37 +01:00
ynh_script_progression --message="Change of URL completed for $app" --last