Lets say I want to schedule task a,b,c,d for cron to run a,b,c,d and wait one hour, before running again. Specific time doesn't matter and each task can vary in time, so what would be the format to have d run when c is done , run c after b is done, run b after a is done etc.
This is what I am currently thinking?
- description: a url: /tasks/a schedule: every 1 minutes
- description: b url: /tasks/b schedule: every 1 minutes
- description: c url: /tasks/c schedule: every 1 minutes
- description: d url: /tasks/d schedule: every 1 hours