1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/piped_ynh.git synced 2024-09-03 20:05:54 +02:00

Fix change_url and upgrade.

This commit is contained in:
Mateusz 2024-06-02 23:15:45 +02:00
parent 0ad88749a8
commit ecd7d0c41a
2 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ source /usr/share/yunohost/helpers
#=================================================
ynh_script_progression --message="Stopping a systemd service..."
ynh_systemd_action --service_name=$app-api --action="stop" --log_path="/var/log/$app/$app-api.log" --line_match="Shutdown completed"
ynh_systemd_action --service_name=$app-api --action="stop" --log_path="/var/log/$app/$app-api.log"
#=================================================
# MODIFY URL IN NGINX CONF
@ -39,7 +39,7 @@ chmod 600 "$install_dir/config.properties"
#=================================================
ynh_script_progression --message="Starting a systemd service..."
ynh_systemd_action --service_name=$app-api --action="start" --log_path="/var/log/$app/$app-api.log" --line_match="HTTP Server is listening on"
ynh_systemd_action --service_name=$app-api --action="start" --log_path="/var/log/$app/$app-api.log" --line_match="Database connection is ready!"
#=================================================
# END OF SCRIPT

View file

@ -24,7 +24,7 @@ chmod 640 "/var/log/$app"
#=================================================
ynh_script_progression --message="Stopping a systemd service..."
ynh_systemd_action --service_name=$app-api --action="stop" --log_path="/var/log/$app/$app-api.log" --line_match="Shutdown completed"
ynh_systemd_action --service_name=$app-api --action="stop" --log_path="/var/log/$app/$app-api.log"
ynh_systemd_action --service_name=$app-proxy --action="stop"
#=================================================