fenrir/uninstall.sh

24 lines
523 B
Bash
Executable File

#!/bin/bash
#Basic uninstall script for Fenrir.
cat << EOF
Fenrir is going to remove.
All scripts and settings will be lost.
EOF
# ask
read -p "This will remove Fenrir and settings, press ctrl+C to cancel, or enter to continue." continue
# do it
unlink /usr/bin/fenrir
unlink /usr/bin/fenrir-daemon
rm -r /opt/fenrir
rm -r /usr/share/fenrir
rm -r /etc/fenrir
rm -r /usr/share/sounds/fenrir
rm /usr/lib/systemd/system/fenrir.service
# success message
cat << EOF
Fenrir has been successfully removed from your system.
EOF