log2ram/uninstall.sh

22 lines
518 B
Bash
Raw Normal View History

#!/usr/bin/env sh
2017-07-27 20:13:51 +02:00
if [ "$(id -u)" -eq 0 ]
2017-07-27 20:13:51 +02:00
then
service log2ram stop
systemctl disable log2ram
rm /etc/systemd/system/log2ram.service
rm /usr/local/bin/log2ram
2017-08-23 14:18:50 +02:00
rm /etc/log2ram.conf
rm /etc/cron.daily/log2ram
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