1
0
mirror of https://github.com/azlux/log2ram.git synced 2023-10-10 13:37:24 +02:00
log2ram/uninstall.sh

26 lines
744 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2017-07-27 20:13:51 +02:00
2022-12-01 13:58:54 +01:00
if dpkg -l log2ram 2>/dev/null; then
echo "Please run : apt remove log2ram"
exit 1
2020-07-22 22:07:02 +02:00
fi
2022-12-01 13:58:54 +01:00
if [ "$(id -u)" -eq 0 ]; then
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*
rm /usr/local/bin/log2ram
rm /etc/log2ram.conf
rm -f /etc/logrotate.d/log2ram
2022-12-01 13:58:54 +01:00
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
echo "##### Reboot isn't needed #####"
2017-07-27 20:13:51 +02:00
else
2022-12-01 13:58:54 +01:00
echo "You need to be ROOT (sudo can be used)"
2017-08-23 14:18:50 +02:00
fi