2018-02-16 01:03:18 +01:00
|
|
|
#!/usr/bin/env sh
|
2017-07-27 20:13:51 +02:00
|
|
|
|
2019-09-23 16:02:56 +02:00
|
|
|
[ "$(id -u)" -eq 0 ] || { echo "You need to be ROOT (sudo can be used)"; exit 1; }
|
|
|
|
|
|
|
|
# See if we can find out the init-system
|
|
|
|
echo "Try to detect init..."
|
|
|
|
if [ "$(systemctl --version)" != '' ] ; then
|
|
|
|
INIT='systemd'
|
|
|
|
elif [ "$(rc-service --version)" != '' ] ; then
|
|
|
|
INIT='openrc'
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$INIT" = 'systemd' ] ; then
|
2017-07-27 20:13:51 +02:00
|
|
|
service log2ram stop
|
|
|
|
systemctl disable log2ram
|
|
|
|
rm /etc/systemd/system/log2ram.service
|
2019-09-23 16:02:56 +02:00
|
|
|
elif [ "$INIT" = 'openrc' ] ; then
|
|
|
|
rc-service log2ram stop
|
|
|
|
rc-update del log2ram boot
|
|
|
|
rm /etc/init.d/log2ram
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm /usr/local/bin/log2ram
|
|
|
|
rm /etc/log2ram.conf
|
|
|
|
rm /etc/cron.daily/log2ram
|
|
|
|
rm /etc/logrotate.d/log2ram
|
2017-12-07 17:42:40 +01:00
|
|
|
|
2019-09-23 16:02:56 +02:00
|
|
|
if [ -d /var/hdd.log ]; then
|
|
|
|
rm -r /var/hdd.log
|
2017-08-23 14:18:50 +02:00
|
|
|
fi
|
2019-09-23 16:02:56 +02:00
|
|
|
echo "Log2Ram is uninstalled, removing the uninstaller in progress"
|
|
|
|
rm /usr/local/bin/uninstall-log2ram.sh
|
|
|
|
echo "##### Reboot isn't needed #####"
|