2017-07-21 22:11:45 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-12-09 00:35:51 +01:00
|
|
|
source _common.sh
|
2017-07-21 22:11:45 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2024-04-04 00:28:32 +02:00
|
|
|
load_vars
|
2017-07-21 22:11:45 +02:00
|
|
|
|
2018-01-31 16:07:43 +01:00
|
|
|
#=================================================
|
2023-12-09 00:35:51 +01:00
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-08-31 01:07:34 +02:00
|
|
|
ynh_script_progression "Stopping $app's systemd service..."
|
2018-01-31 16:07:43 +01:00
|
|
|
|
2024-08-31 01:07:34 +02:00
|
|
|
ynh_systemctl --service="$app" --action="stop"
|
2018-05-19 20:44:15 +02:00
|
|
|
|
2023-12-09 00:35:51 +01:00
|
|
|
#=================================================
|
|
|
|
# MODIFY URL IN NGINX CONF
|
|
|
|
#=================================================
|
2024-08-31 01:07:34 +02:00
|
|
|
ynh_script_progression "Updating NGINX web server configuration..."
|
2018-05-19 20:44:15 +02:00
|
|
|
|
2024-08-31 01:07:34 +02:00
|
|
|
ynh_config_change_url_nginx
|
2017-07-21 22:11:45 +02:00
|
|
|
|
2023-12-09 00:35:51 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC MODIFICATIONS
|
|
|
|
#=================================================
|
2024-08-31 01:07:34 +02:00
|
|
|
ynh_script_progression "Updating configuration..."
|
|
|
|
ynh_config_add --jinja --template=monitorix.conf --destination=/etc/monitorix/monitorix.conf
|
2018-05-01 21:00:07 +02:00
|
|
|
|
2023-12-09 00:35:51 +01:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-08-31 01:07:34 +02:00
|
|
|
ynh_script_progression "Starting $app's systemd service..."
|
|
|
|
ynh_systemctl --service="$app" --action=start --log_path='systemd' --wait_until=' - Ok, ready.'
|
2023-12-09 00:35:51 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-06-07 23:09:30 +02:00
|
|
|
|
2024-08-31 01:07:34 +02:00
|
|
|
ynh_script_progression "Change of URL completed for $app"
|