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

53 lines
1.7 KiB
Text
Raw Permalink Normal View History

2021-03-07 01:45:20 +01:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2022-09-22 04:07:21 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2021-03-07 01:45:20 +01:00
2022-01-25 01:31:50 +01:00
ynh_systemd_action --service_name=$app --action="stop"
2021-03-07 01:45:20 +01:00
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
2022-09-22 04:07:21 +02:00
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1
2021-03-07 01:45:20 +01:00
2023-03-25 21:05:36 +01:00
ynh_change_url_nginx_config
2022-09-22 04:07:21 +02:00
#=================================================
# SPECIFIC MODIFICATIONS
2021-03-07 02:33:00 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
2021-08-10 10:20:46 +02:00
ynh_script_progression --message="Configuring a systemd service..." --weight=1
2023-03-25 21:10:43 +01:00
2022-01-25 01:31:50 +01:00
domain=$new_domain
ynh_add_systemd_config
2021-03-07 02:33:00 +01:00
#=================================================
2022-01-25 01:31:50 +01:00
# GENERIC FINALISATION
2021-03-07 02:33:00 +01:00
#=================================================
2021-03-07 01:45:20 +01:00
# START SYSTEMD SERVICE
#=================================================
2022-09-22 04:07:21 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-03-07 01:45:20 +01:00
2022-01-25 01:31:50 +01:00
# Start a systemd service
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="Config file loaded from"
2021-03-07 01:45:20 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2022-09-22 04:07:21 +02:00
ynh_script_progression --message="Change of URL completed for $app" --last