opensnitch/ui/debian/postrm
Gustavo Iñiguez Goia 1e11e52457 deb UI packages improved
- kill UI on uninstall.
- update system icon cache after installing.
2020-04-09 18:51:17 +02:00

25 lines
465 B
Bash
Executable file

#!/bin/sh
set -e
purge_files()
{
for i in $(ls /home)
do
path=/home/$i/.config/
if [ -h $path/autostart/opensnitch_ui.desktop -o -f $path/autostart/opensnitch_ui.desktop ];then
rm -f $path/autostart/opensnitch_ui.desktop
fi
if [ -d $path/opensnitch/ ]; then
rm -rf $path/opensnitch/
fi
done
}
pkill -15 opensnitch-ui || true
case "$1" in
purge)
purge_files
;;
esac