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.

28 line
649 B

  1. #!/bin/sh
  2. if [ `id -u` -eq 0 ]
  3. then
  4. cp log2ram.service /etc/systemd/system/log2ram.service
  5. chmod 644 /etc/systemd/system/log2ram.service
  6. cp log2ram /usr/local/bin/log2ram
  7. chmod a+x /usr/local/bin/log2ram
  8. cp log2ram.conf /etc/log2ram.conf
  9. chmod 644 /etc/log2ram.conf
  10. systemctl enable log2ram
  11. cp log2ram.hourly /etc/cron.hourly/log2ram
  12. chmod +x /etc/cron.hourly/log2ram
  13. # Remove a previous log2ram version
  14. if [ -d /var/log.hdd]; then
  15. rm -r /var/log.hdd
  16. fi
  17. if [ -d /var/hdd.log ]; then
  18. rm -r /var/hdd.log
  19. fi
  20. echo "##### Reboot to activate log2ram #####"
  21. else
  22. echo "You need to be ROOT (sudo can be used)"
  23. fi