#!/bin/bash #================================================= # GENERIC START #================================================= # IMPORT GENERIC HELPERS #================================================= source _common.sh source /usr/share/yunohost/helpers #================================================= # LOAD SETTINGS #================================================= ynh_script_progression --message="Loading installation settings..." --weight=1 app=$YNH_APP_INSTANCE_NAME datadir=$(ynh_app_setting_get --app=$app --key=datadir) #================================================= # STANDARD REMOVE #================================================= # REMOVE SERVICE INTEGRATION IN YUNOHOST #================================================= # Remove the service from the list of services known by YunoHost (added from `yunohost service add`) if ynh_exec_warn_less yunohost service status smbd >/dev/null then ynh_script_progression --message="Removing smbd service integration..." yunohost service remove smbd fi # Remove the service from the list of services known by YunoHost (added from `yunohost service add`) if ynh_exec_warn_less yunohost service status avahi-daemon >/dev/null then ynh_script_progression --message="Removing avahi-daemon service integration..." yunohost service remove avahi-daemon fi #================================================= # REMOVE APP MAIN DIR #================================================= ynh_script_progression --message="Removing app main directory..." --weight=1 #================================================= # REMOVE DATA DIR #================================================= # Remove the data directory if --purge option is used if [ "${YNH_APP_PURGE:-0}" -eq 1 ] then ynh_script_progression --message="Removing app data directory..." --weight=1 ynh_secure_remove --file="$datadir" fi #================================================= # REMOVE DEPENDENCIES #================================================= ynh_script_progression --message="Removing dependencies..." --weight=1 # Delete User from Samba ynh_exec_warn_less smbpasswd -x $app # Remove metapackage and its dependencies ynh_remove_app_dependencies #================================================= # CLOSE A PORT #================================================= if yunohost firewall list | grep -q "\- 445$" then ynh_script_progression --message="Closing port 445..." ynh_exec_warn_less yunohost firewall disallow TCP 445 fi #================================================= # SPECIFIC REMOVE #================================================= # REMOVE VARIOUS FILES #================================================= ynh_script_progression --message="Removing various files..." --weight=1 # Remove the log files ynh_secure_remove --file="/etc/smb/smb.d/$app.conf" ynh_secure_remove --file="/etc/avahi/services/$app.service" samba_sysadmin_update #================================================= # GENERIC FINALIZATION #================================================= # REMOVE DEDICATED USER #================================================= ynh_script_progression --message="Removing the dedicated system user..." --weight=1 # Delete a system user ynh_system_user_delete --username=$app #================================================= # END OF SCRIPT #================================================= ynh_script_progression --message="Removal of $app completed" --last