diff options
author | Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> | 2024-06-07 14:26:42 +0200 |
---|---|---|
committer | Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> | 2024-06-07 14:26:42 +0200 |
commit | 933849a6ff96cc7327558e4cabc1a00c957467bb (patch) | |
tree | ccc662f418e54df736f4e00f7e6417db22790c03 /scripts/change_url |
First commit
Diffstat (limited to 'scripts/change_url')
-rw-r--r-- | scripts/change_url | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/scripts/change_url b/scripts/change_url new file mode 100644 index 0000000..f009a85 --- /dev/null +++ b/scripts/change_url @@ -0,0 +1,46 @@ +#!/bin/bash + +## this script is only run if actual change to domain/path is detected, if you're here either $domain or $path changed +## new location is available via $domain and $path (or $new_domain and $new_path variables if you want to be explicit) +## old values are available via, you guessed it, $old_domain and $old_path + +#================================================= +# IMPORT GENERIC HELPERS +#================================================= + +source _common.sh +source /usr/share/yunohost/helpers + +#================================================= +# STOP SYSTEMD SERVICE +#================================================= +ynh_script_progression --message="Stopping $app's systemd service..." --weight=1 + +ynh_systemd_action --service_name="$app" --action="stop" --log_path="/var/log/$app/$app.log" + +#================================================= +# MODIFY URL IN NGINX CONF +#================================================= +ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1 + +# this will most likely adjust NGINX config correctly +ynh_change_url_nginx_config + +#================================================= +# SPECIFIC MODIFICATIONS +#================================================= + +## do any changes to files that reference specific installation domain/path, i.e. regenerate configs etc + +#================================================= +# START SYSTEMD SERVICE +#================================================= +ynh_script_progression --message="Starting $app's systemd service..." --weight=1 + +ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log" + +#================================================= +# END OF SCRIPT +#================================================= + +ynh_script_progression --message="Change of URL completed for $app" --last |