#!/bin/bash app=$YNH_APP_INSTANCE_NAME # Source YunoHost helpers source /usr/share/yunohost/helpers # Retrieve app settings domain=$(ynh_app_setting_get "$app" domain) # Remove sources systemctl stop $app systemctl disable $app sudo rm -rf /home/yunohost.app/$app sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf sudo rm -f /etc/systemd/system/$app.service # Reload nginx service sudo service nginx reload # Remove dedicated system user ynh_system_user_delete $app