6

In Autosys R11, I need job_b to run only if job_a succeeded within the last X hours. Apparently, R11 allows you to "set look back dependencies on job_a to only run if job_c has ran to S within X hours." What would be the syntax?

s(job_a)

What would I add if I want my job to run only if job_a succeeded within the last 12 hours, for example?

Community
  • 1
  • 1
anomal
  • 2,249
  • 2
  • 19
  • 17

1 Answers1

7

Should be

condition: success(job_a,12.00)

status(job_name, hhhh.mm)

clmccomas
  • 684
  • 6
  • 8