mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-05 17:10:57 +01:00

Use debconf to ask questions. This allow us to: - install deb packages using apt frontends (noninteractive, readline, etc). - display the questions on graphical installers like Gdebi. closes #75
19 lines
390 B
Bash
Executable file
19 lines
390 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
db_purge
|
|
|
|
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
|