mirror of
https://github.com/azlux/log2ram.git
synced 2023-10-10 13:37:24 +02:00
16ebd29848
better for flexible shell
22 lines
519 B
Bash
22 lines
519 B
Bash
#!/usr/bin/env sh
|
|
|
|
if [ "$(id -u)" -eq 0 ]
|
|
then
|
|
service log2ram stop
|
|
systemctl disable log2ram
|
|
rm /etc/systemd/system/log2ram.service
|
|
rm /usr/local/bin/log2ram
|
|
rm /etc/log2ram.conf
|
|
rm /etc/cron.hourly/log2ram
|
|
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
|
|
echo "##### Reboot isn't needed #####"
|
|
else
|
|
echo "You need to be ROOT (sudo can be used)"
|
|
fi
|