mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-06 09:30:58 +01:00

* 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
17 lines
349 B
Bash
Executable file
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
|