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

62 lines
2.3 KiB
Text
Raw Normal View History

2020-05-17 09:28:22 +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=2
ynh_systemd_action --service_name=grafana-server --action="stop" --log_path="/var/log/grafana/grafana.log"
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
2021-08-03 08:02:26 +02:00
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1
2020-05-17 09:28:22 +02:00
2023-10-24 20:25:42 +02:00
ynh_change_url_nginx_config
2020-05-17 09:28:22 +02:00
#=================================================
# SPECIFIC MODIFICATIONS
#=================================================
2022-01-27 00:30:36 +01:00
# UPDATE GRAFANA CONFIGURATION
#=================================================
2020-05-17 09:28:22 +02:00
ynh_script_progression --message="Updating Grafana configuration..." --weight=1
2022-01-27 00:30:36 +01:00
2020-05-17 09:28:22 +02:00
grafana_conf="/etc/grafana/grafana.ini"
# Set domain
sed -i "/^\[server\]$/,/^\[/ s@domain = .*@domain = $new_domain@" $grafana_conf
# Set final URL
sed -i "/^\[server\]$/,/^\[/ s@root_url = .*@root_url = https://$new_domain$new_path@" $grafana_conf
# Specify if using sub_path
if [ "$new_path" != "/" ]; then
sed -i "/^\[server\]$/,/^\[/ s@serve_from_sub_path = .*@serve_from_sub_path = true@" $grafana_conf
else
sed -i "/^\[server\]$/,/^\[/ s@serve_from_sub_path = .*@serve_from_sub_path = false@" $grafana_conf
fi
#=================================================
# GENERIC FINALISATION
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=2
2022-02-06 19:08:44 +01:00
systemctl daemon-reload
2020-05-17 09:28:22 +02:00
ynh_systemd_action --service_name=grafana-server --action="start" --log_path="/var/log/grafana/grafana.log" --line_match="HTTP Server Listen" --timeout=600
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Change of URL completed for $app" --last