You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/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 "##### Reboot isn't needed #####"
- else
- echo "You need to be ROOT (sudo can be used)"
- fi
|