2021-05-21 14:13:08 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_script_progression "Stopping $app's systemd service..."
|
2021-05-21 14:13:08 +02:00
|
|
|
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_systemctl --service=$app --action=stop
|
2021-05-21 14:13:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MODIFY URL IN NGINX CONF
|
|
|
|
#=================================================
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_script_progression "Updating NGINX web server configuration..."
|
2021-05-21 14:13:08 +02:00
|
|
|
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_config_change_url_nginx
|
2023-04-07 13:22:55 +02:00
|
|
|
|
2021-05-21 14:57:21 +02:00
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_script_progression "Adding $app's configuration..."
|
2023-04-07 13:30:21 +02:00
|
|
|
|
2021-05-21 14:57:21 +02:00
|
|
|
domain="$new_domain"
|
|
|
|
path="$new_path"
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_config_add --template="miniflux.conf" --destination="$install_dir/$app.conf"
|
2021-05-21 14:57:21 +02:00
|
|
|
|
2023-04-07 13:22:55 +02:00
|
|
|
chmod 600 "$install_dir/$app.conf"
|
2021-05-21 14:57:21 +02:00
|
|
|
|
2021-05-21 14:13:08 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_script_progression "Starting $app's systemd service..."
|
2021-05-21 14:13:08 +02:00
|
|
|
|
|
|
|
# Start a systemd service
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_systemctl --service=$app --action=start --log_path=systemd
|
2021-05-21 14:13:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_script_progression "Change of URL completed for $app"
|