Previously I wrote an script to be executed every minute using Cronjob.
Using crontab -l
I added an entry like :
* * * * * /etc/init.d/time-stamps-ntp
to execute the mentioned script periodically. Now; I would like to do this process automatically for some other devices using firmware update. I do not have any access to those devices to be able to set or edit crontab. I want to add some commands to one of the rauc scripts which is responsible for updating the firmware of those devices.
How should I do this or can you please tell me when we use crontab -e , in which file the following entry is saved?
* * * * * /etc/init.d/time-stamps-ntp
Thanks in advance