opensnitch/ui/debian/prerm
Gustavo Iñiguez Goia 0f171f87d4 UI deb package improvements
* Purge files when using apt remove --purge
* Display a message to uninstall installed pkgs from pypi when invoking
apt remove
* link autostart .desktop file to /usr/share/applications instead of
copying it
2020-02-22 17:22:28 +01:00

17 lines
349 B
Bash
Executable file

#!/bin/sh
set -e
case "$1" in
remove)
echo
echo " If you don't need them anymore, remember to uninstall unicode_slugify, grcpio-tools and protobuf:"
echo
echo " pip3 uninstall unicode_slugify"
echo " pip3 uninstall grcpio-tools"
echo " pip3 uninstall protobuf"
echo
;;
esac