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

33 lines
1 KiB
Text
Raw Normal View History

2019-01-29 21:56:56 +01:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
2019-05-15 14:00:19 +02:00
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression "Stopping $app's systemd service..."
2019-05-15 14:00:19 +02:00
ynh_systemctl --service=$app --action="stop" --log_path=systemd
2019-05-15 14:00:19 +02:00
2019-01-29 21:56:56 +01:00
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
ynh_script_progression "Updating NGINX web server configuration..."
2019-01-29 21:56:56 +01:00
ynh_config_change_url_nginx
2019-01-29 21:56:56 +01:00
2019-05-15 14:00:19 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression "Starting $app's systemd service..."
2019-05-15 14:00:19 +02:00
2020-06-03 23:48:48 +02:00
# Start a systemd service
ynh_systemctl --service="$app" --action="start" --log_path=systemd --wait_until="HTTP Server:"
2019-05-15 14:00:19 +02:00
2019-02-11 06:05:30 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Change of URL completed for $app"