diff --git a/uninstall.sh b/uninstall.sh new file mode 100755 index 0000000..018dac4 --- /dev/null +++ b/uninstall.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +################################################ +# lf-updr - Linux Firmware Updater Uninstaller # +# Author: q3aql@duck.com # +# License: GPLv2.0 # +################################################ + +echo "** lf-updr - Linux Firmware Updater **" +echo "" + +# Check if process have root permissions +mkdir -p /etc/root &> /dev/null +administrador=$? +if [ ${administrador} -eq 0 ] ; then + rm -rf /etc/root +else + echo "* Root permissions are required" + exit +fi + +# Remove files +echo "* Removing /usr/bin/lf-updr" +rm -rf /usr/bin/lf-updr +echo "* Removing /etc/cron.d/lf-updr" +rm -rf /etc/cron.d/lf-updr +echo "* Done"