mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-06 09:30:58 +01:00
25 lines
465 B
Bash
Executable file
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
|