I understand that in drafting a autosys jil file, I can use "update_job: job_name" to change the value of one or more job's attribute. For example:
update_job: abc_job
start_time: some_new_time
my question is, now I'd like to add a new attribute,
run_calendar
to abc_job, can I just do:
update_job: abc_job
run_calendar: my_cal
I know I could have used a combine of:
delete_job: abc_job
insert_job: abc_job
with new attributes added, but since I have quite a few updates to do and each job has a certain size of body, I prefer to a more succinct solution.