Open nhandler opened 6 years ago
Right now, install.sh adds the timelapse cron job by copying (cp) it to /etc/cron.d. It would be nice if it created a symlink (ln -s) so that future updates to the cron job in this git repository go live automatically.
install.sh
timelapse
cp
/etc/cron.d
ln -s
That is because cron will be unhappy if you stick a link there.precisely it will be unhappy if the file doesn't belong to root
Right now,
install.sh
adds thetimelapse
cron job by copying (cp
) it to/etc/cron.d
. It would be nice if it created a symlink (ln -s
) so that future updates to the cron job in this git repository go live automatically.