mirror of
https://github.com/azlux/log2ram.git
synced 2023-10-10 13:37:24 +02:00
e238849069
- Since the cron job could be called before the user reboots after install (or if log2ram is disabled), we check that the hdd log location exists before syncing. - Copy the log2ram.hourly sync script to cron's hourly directory on install.
17 lines
414 B
Bash
17 lines
414 B
Bash
#!/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
|
|
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
|