1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00

Add upgrade support for uwsgi service

This commit is contained in:
Jean-Baptiste Holcroft 2017-11-23 15:17:04 +01:00
parent c0db10fa59
commit 5d0b16f4cd

View file

@ -71,6 +71,15 @@ if [ -z "$db_name" ]; then # If db_name doesn't exist, create it
ynh_app_setting_set "$app" db_name "$db_name"
fi
if [ -e "/etc/systemd/system/$app.service" ]
then
systemctl stop "$app.service"
systemctl disable "$app.service"
yunohost service remove "$app.service"
ynh_secure_remove "$final_path/uwsgi.ini"
ynh_secure_remove "/etc/systemd/system/$app.service"
fi
#=================================================
# CHECK THE PATH
#=================================================