1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/terraforming-mars_ynh.git synced 2024-09-03 20:36:05 +02:00
terraforming-mars_ynh/scripts/change_url

49 lines
1.7 KiB
Text
Raw Normal View History

2023-10-16 21:07:03 +02:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a 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
ynh_change_url_nginx_config
#=================================================
2023-10-29 19:49:09 +01:00
# MODIFY THE CONFIG FILE
2023-10-16 21:07:03 +02:00
#=================================================
2023-10-29 19:49:09 +01:00
ynh_script_progression --message="Modifying a config file..." --weight=1
domain=$new_domain
2023-10-29 21:29:28 +01:00
ynh_add_config --template="../conf/.env" --destination="$install_dir/.env"
2023-10-16 21:07:03 +02:00
#=================================================
# GENERIC FINALISATION
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# END OF SCRIPT
#=================================================
2023-11-06 20:10:52 +01:00
ynh_script_progression --message="Change of URL completed for $app" --last