Using Upstart instead of cron

Viewed 2465

Can I use Upstart to run tasks on schedule?

Now I have this tasks in my crontab:

0 3 * * * /usr/bin/node ~/update.js
0 9 * * * /usr/bin/node ~/update.js
0 12 * * * /usr/bin/node ~/update.js
0 15 * * * /usr/bin/node ~/update.js

How I can run this tasks by Upstart? Is it possible?

1 Answers
Related