log2ram/uninstall.sh

27 lines
693 B
Bash
Raw Normal View History

#!/usr/bin/env sh
2017-07-27 20:13:51 +02:00
2020-07-22 22:07:02 +02:00
if dpkg -l log2ram ; then
echo "Please run : apt remove log2ram"
exit 1
fi
if [ "$(id -u)" -eq 0 ]
2017-07-27 20:13:51 +02:00
then
2020-07-22 22:07:02 +02:00
echo "Not apt installed. Remove will continue with this script..."
systemctl stop log2ram.service log2ram-daily.timer
systemctl disable log2ram.service log2ram-daily.timer
rm -rf /etc/systemd/system/log2ram*
2017-07-27 20:13:51 +02:00
rm /usr/local/bin/log2ram
2017-08-23 14:18:50 +02:00
rm /etc/log2ram.conf
2017-12-16 18:25:58 +01:00
rm /etc/logrotate.d/log2ram
if [ -d /var/hdd.log ]; then
rm -r /var/hdd.log
fi
echo "Log2Ram is uninstalled, removing the uninstaller in progress"
rm /usr/local/bin/uninstall-log2ram.sh
2017-07-27 20:13:51 +02:00
echo "##### Reboot isn't needed #####"
else
echo "You need to be ROOT (sudo can be used)"
2017-08-23 14:18:50 +02:00
fi