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
- 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
-
- echo "Reboot to activate log2ram"
- else
- echo "You need to be ROOT (sudo can be used)"
- fi
|