1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/adminer_ynh.git synced 2024-09-03 18:06:06 +02:00
adminer_ynh/scripts/change_url

91 lines
2.4 KiB
Text
Raw Normal View History

2017-07-26 09:39:09 +02:00
#!/bin/bash
2018-06-27 17:21:59 +02:00
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2017-07-26 09:39:09 +02:00
source /usr/share/yunohost/helpers
2018-06-27 17:21:59 +02:00
#=================================================
# RETRIEVE ARGUMENTS
#=================================================
2017-07-26 09:39:09 +02:00
old_domain=$YNH_APP_OLD_DOMAIN
2018-06-27 17:21:59 +02:00
old_path=$YNH_APP_OLD_PATH
2017-07-26 09:39:09 +02:00
new_domain=$YNH_APP_NEW_DOMAIN
2018-06-27 17:21:59 +02:00
new_path=$YNH_APP_NEW_PATH
app=$YNH_APP_INSTANCE_NAME
2017-07-26 09:39:09 +02:00
2018-09-16 14:47:00 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
# Needed for helper "ynh_add_nginx_config"
final_path=$(ynh_app_setting_get $app final_path)
2018-06-27 17:21:59 +02:00
#=================================================
# CHECK THE SYNTAX OF THE PATHS
#=================================================
test -n "$old_path" || old_path="/"
test -n "$new_path" || new_path="/"
#=================================================
2017-07-26 09:39:09 +02:00
# CHECK WHICH PARTS SHOULD BE CHANGED
2018-06-27 17:21:59 +02:00
#=================================================
2017-07-26 09:39:09 +02:00
change_domain=0
if [ "$old_domain" != "$new_domain" ]
then
change_domain=1
fi
change_path=0
if [ "$old_path" != "$new_path" ]
then
change_path=1
fi
2018-06-27 17:21:59 +02:00
#=================================================
2017-07-26 09:39:09 +02:00
# STANDARD MODIFICATIONS
2018-06-27 17:21:59 +02:00
#=================================================
2017-07-26 09:39:09 +02:00
# MODIFY URL IN NGINX CONF
2018-06-27 17:21:59 +02:00
#=================================================
2017-07-26 09:39:09 +02:00
nginx_conf_path=/etc/nginx/conf.d/$old_domain.d/$app.conf
# Change the path in the nginx config file
if [ $change_path -eq 1 ]
then
2018-06-27 17:21:59 +02:00
# Make a backup of the original nginx config file if modified
ynh_backup_if_checksum_is_different "$nginx_conf_path"
# Set global variables for nginx helper
domain="$old_domain"
path_url="$new_path"
# Create a dedicated nginx config
ynh_add_nginx_config
2017-07-26 09:39:09 +02:00
fi
# Change the domain for nginx
if [ $change_domain -eq 1 ]
then
2018-06-27 17:21:59 +02:00
# Delete file checksum for the old conf file location
ynh_delete_file_checksum "$nginx_conf_path"
mv $nginx_conf_path /etc/nginx/conf.d/$new_domain.d/$app.conf
# Store file checksum for the new config file location
ynh_store_file_checksum "/etc/nginx/conf.d/$new_domain.d/$app.conf"
2017-07-26 09:39:09 +02:00
fi
2018-06-27 17:21:59 +02:00
#=================================================
# GENERIC FINALISATION
#=================================================
# RELOAD NGINX
#=================================================
systemctl reload nginx