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

68 lines
2.2 KiB
Text
Raw Normal View History

2017-12-05 19:33:47 +01:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
2018-05-20 20:55:15 +02:00
#=================================================
# ACTIVATE MAINTENANCE MODE
#=================================================
path=$old_path
2018-05-20 20:55:15 +02:00
domain=$old_domain
2017-12-05 19:33:47 +01:00
ynh_maintenance_mode_ON
2017-12-05 19:33:47 +01:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..."
ynh_systemd_action --service_name=$app --action="stop"
2017-12-05 19:33:47 +01:00
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
2020-10-05 22:02:46 +02:00
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=2
2017-12-05 19:33:47 +01:00
ynh_change_url_nginx_config
2017-12-05 19:33:47 +01:00
#=================================================
# SPECIFIC MODIFICATIONS
#=================================================
# REPLACE THE PATH IN THE CONFIG OF LUTIM
#=================================================
ynh_replace_string --match_string="\(^ *prefix.*=> '\).*" --replace_string="\1$new_path'," --target_file="$install_dir/lutim.conf"
2017-12-05 19:33:47 +01:00
#=================================================
# GENERIC FINALISATION
#=================================================
# START SYSTEMD SERVICE
2017-12-05 19:33:47 +01:00
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=3
2017-12-05 19:33:47 +01:00
# Start a systemd service
ynh_systemd_action --service_name=$app --action="start" --line_match="Manager.*started" --log_path="/var/log/$app/production.log" --timeout="120"
2018-05-20 20:55:15 +02:00
#=================================================
# DEACTIVE MAINTENANCE MODE
#=================================================
path=$old_path
2018-05-20 20:55:15 +02:00
domain=$old_domain
ynh_maintenance_mode_OFF
2019-01-30 16:19:40 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-11-12 15:30:00 +01:00
ynh_script_progression --message="Change of URL completed for $app" --last