summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/cloud/ovirt/ovirt_job.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/modules/cloud/ovirt/ovirt_job.py')
-rw-r--r--lib/ansible/modules/cloud/ovirt/ovirt_job.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ansible/modules/cloud/ovirt/ovirt_job.py b/lib/ansible/modules/cloud/ovirt/ovirt_job.py
index 5a96d7f965..7b6c595ee3 100644
--- a/lib/ansible/modules/cloud/ovirt/ovirt_job.py
+++ b/lib/ansible/modules/cloud/ovirt/ovirt_job.py
@@ -36,6 +36,7 @@ options:
description:
description:
- "Description of the job."
+ - "When task with same description has already finished and you rerun taks it will create new job."
required: true
state:
description:
@@ -199,7 +200,7 @@ def main():
job = get_entity(jobs_service, module.params['description'])
changed = False
if state in ['present', 'started']:
- if job is None:
+ if job is None or job.status in [otypes.JobStatus.FINISHED, otypes.JobStatus.FAILED]:
job = jobs_service.add(build_job(module.params['description']))
changed = True
changed = attach_steps(module, job.id, jobs_service) or changed