1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/librephotos_ynh.git synced 2024-09-03 19:36:12 +02:00

Fix service integration removal

This commit is contained in:
Jules Bertholet 2021-04-06 16:06:45 -04:00
parent bca1f90113
commit 1060ee5d80

View file

@ -29,13 +29,22 @@ data_path=$(ynh_app_setting_get --app=$app --key=data_path)
# REMOVE SERVICE INTEGRATION IN YUNOHOST
#=================================================
ynh_script_progression --message="Removing $app services integration..." --weight=1
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
if ynh_exec_warn_less yunohost service status $app >/dev/null
then
ynh_script_progression --message="Removing $app service integration..." --weight=1
if ynh_exec_warn_less yunohost service status $app-backend >/dev/null ; then
yunohost service remove $app-backend
fi
if ynh_exec_warn_less yunohost service status $app-frontend >/dev/null ; then
yunohost service remove $app-frontend
fi
if ynh_exec_warn_less yunohost service status $app-image-similarity >/dev/null ; then
yunohost service remove $app-image-similarity
fi
if ynh_exec_warn_less yunohost service status $app-worker >/dev/null ; then
yunohost service remove $app-worker
fi