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
-
- [ -d /var/hdd.log ] && echo "ERROR: log2ram still installed. Uninstall first!"
- [ -d /var/hdd.log ] && exit 1
-
- if [ `id -u` -eq 0 ]
- then
- cp log2ram.service /etc/systemd/system/log2ram.service
- chmod 644 /etc/systemd/system/log2ram.service
- cp log2ram /usr/local/bin/log2ram
- chmod a+x /usr/local/bin/log2ram
- cp log2ram.conf /etc/log2ram.conf
- chmod 644 /etc/log2ram.conf
- systemctl enable log2ram
- cp log2ram.hourly /etc/cron.hourly/log2ram
- chmod +x /etc/cron.hourly/log2ram
- cp log2ram.logrotate /etc/logrotate.d/log2ram
- chmod 644 /etc/logrotate.d/log2ram
- cp uninstall.sh /usr/local/bin/uninstall-log2ram.sh
-
- # Remove a previous log2ram version
- if [ -d /var/log.hdd ]; then
- rm -r /var/log.hdd
- fi
-
- if [ -d /var/hdd.log ]; then
- rm -r /var/hdd.log
- fi
-
- echo "##### Reboot to activate log2ram #####"
- else
- echo "You need to be ROOT (sudo can be used)"
- fi
|