2014-09-26 01:01:01 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-03-06 23:25:59 +00:00
|
|
|
# Copyright: (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>, and others
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
|
2017-08-16 03:16:38 +00:00
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
2017-03-14 16:07:22 +00:00
|
|
|
'status': ['stableinterface'],
|
|
|
|
'supported_by': 'core'}
|
|
|
|
|
2019-03-06 23:25:59 +00:00
|
|
|
DOCUMENTATION = r'''
|
2014-09-26 01:01:01 +00:00
|
|
|
---
|
|
|
|
module: async_status
|
|
|
|
short_description: Obtain status of asynchronous task
|
|
|
|
description:
|
2019-03-06 23:25:59 +00:00
|
|
|
- This module gets the status of an asynchronous task.
|
|
|
|
- This module is also supported for Windows targets.
|
2014-09-26 01:01:01 +00:00
|
|
|
version_added: "0.5"
|
|
|
|
options:
|
|
|
|
jid:
|
|
|
|
description:
|
2019-03-06 23:25:59 +00:00
|
|
|
- Job or task identifier
|
|
|
|
type: str
|
2014-09-26 01:01:01 +00:00
|
|
|
required: true
|
|
|
|
mode:
|
|
|
|
description:
|
2019-03-06 23:25:59 +00:00
|
|
|
- If C(status), obtain the status.
|
|
|
|
- If C(cleanup), clean up the async job cache (by default in C(~/.ansible_async/)) for the specified job I(jid).
|
|
|
|
type: str
|
|
|
|
choices: [ cleanup, status ]
|
|
|
|
default: status
|
2014-09-26 01:01:01 +00:00
|
|
|
notes:
|
2019-03-06 23:25:59 +00:00
|
|
|
- This module is also supported for Windows targets.
|
|
|
|
seealso:
|
|
|
|
- module: async_wrapper
|
|
|
|
- ref: playbooks_async
|
|
|
|
description: Detailed information on how to use asynchronous actions and polling.
|
2017-01-27 23:20:31 +00:00
|
|
|
author:
|
2019-03-06 23:25:59 +00:00
|
|
|
- Ansible Core Team
|
|
|
|
- Michael DeHaan
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = r'''
|
|
|
|
---
|
|
|
|
- name: Asynchronous yum task
|
|
|
|
yum:
|
|
|
|
name: docker-io
|
2019-03-11 17:13:52 +00:00
|
|
|
state: present
|
2019-03-06 23:25:59 +00:00
|
|
|
async: 1000
|
|
|
|
poll: 0
|
|
|
|
register: yum_sleeper
|
|
|
|
|
|
|
|
- name: Wait for asynchronous job to end
|
|
|
|
async_status:
|
|
|
|
jid: '{{ yum_sleeper.ansible_job_id }}'
|
|
|
|
register: job_result
|
|
|
|
until: job_result.finished
|
|
|
|
retries: 30
|
|
|
|
'''
|
|
|
|
|
|
|
|
RETURN = r'''
|
|
|
|
ansible_job_id:
|
|
|
|
description: The asynchronous job id
|
|
|
|
returned: success
|
|
|
|
type: str
|
|
|
|
sample: '360874038559.4169'
|
|
|
|
finished:
|
|
|
|
description: Whether the asynchronous job has finished (C(1)) or not (C(0))
|
|
|
|
returned: success
|
|
|
|
type: int
|
|
|
|
sample: 1
|
|
|
|
started:
|
|
|
|
description: Whether the asynchronous job has started (C(1)) or not (C(0))
|
|
|
|
returned: success
|
|
|
|
type: int
|
|
|
|
sample: 1
|
2014-09-26 01:01:01 +00:00
|
|
|
'''
|
|
|
|
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
import json
|
|
|
|
import os
|
|
|
|
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
2016-08-31 15:18:54 +00:00
|
|
|
from ansible.module_utils.six import iteritems
|
2019-03-06 23:25:59 +00:00
|
|
|
from ansible.module_utils._text import to_native
|
2014-09-26 01:01:01 +00:00
|
|
|
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
|
2014-09-26 01:01:01 +00:00
|
|
|
def main():
|
|
|
|
|
|
|
|
module = AnsibleModule(argument_spec=dict(
|
2019-03-06 23:25:59 +00:00
|
|
|
jid=dict(type='str', required=True),
|
|
|
|
mode=dict(type='str', default='status', choices=['cleanup', 'status']),
|
2018-09-20 09:37:54 +00:00
|
|
|
# passed in from the async_status action plugin
|
2019-03-06 23:25:59 +00:00
|
|
|
_async_dir=dict(type='path', required=True),
|
2014-09-26 01:01:01 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
mode = module.params['mode']
|
2017-08-10 08:36:28 +00:00
|
|
|
jid = module.params['jid']
|
2018-09-20 09:37:54 +00:00
|
|
|
async_dir = module.params['_async_dir']
|
2018-01-16 05:15:04 +00:00
|
|
|
|
2014-09-26 01:01:01 +00:00
|
|
|
# setup logging directory
|
2018-01-16 05:15:04 +00:00
|
|
|
logdir = os.path.expanduser(async_dir)
|
2014-09-26 01:01:01 +00:00
|
|
|
log_path = os.path.join(logdir, jid)
|
|
|
|
|
|
|
|
if not os.path.exists(log_path):
|
2015-11-13 00:19:52 +00:00
|
|
|
module.fail_json(msg="could not find job", ansible_job_id=jid, started=1, finished=1)
|
2014-09-26 01:01:01 +00:00
|
|
|
|
|
|
|
if mode == 'cleanup':
|
|
|
|
os.unlink(log_path)
|
|
|
|
module.exit_json(ansible_job_id=jid, erased=log_path)
|
|
|
|
|
|
|
|
# NOT in cleanup mode, assume regular status mode
|
|
|
|
# no remote kill mode currently exists, but probably should
|
|
|
|
# consider log_path + ".pid" file and also unlink that above
|
|
|
|
|
2016-07-07 18:41:35 +00:00
|
|
|
data = None
|
2014-09-26 01:01:01 +00:00
|
|
|
try:
|
2019-01-11 15:14:08 +00:00
|
|
|
with open(log_path) as f:
|
|
|
|
data = json.loads(f.read())
|
2016-06-13 18:40:13 +00:00
|
|
|
except Exception:
|
2016-07-07 18:41:35 +00:00
|
|
|
if not data:
|
2014-09-26 01:01:01 +00:00
|
|
|
# file not written yet? That means it is running
|
|
|
|
module.exit_json(results_file=log_path, ansible_job_id=jid, started=1, finished=0)
|
|
|
|
else:
|
|
|
|
module.fail_json(ansible_job_id=jid, results_file=log_path,
|
2017-08-10 08:36:28 +00:00
|
|
|
msg="Could not parse job output: %s" % data, started=1, finished=1)
|
2014-09-26 01:01:01 +00:00
|
|
|
|
2017-08-10 08:36:28 +00:00
|
|
|
if 'started' not in data:
|
2014-09-26 01:01:01 +00:00
|
|
|
data['finished'] = 1
|
|
|
|
data['ansible_job_id'] = jid
|
2016-07-07 18:41:35 +00:00
|
|
|
elif 'finished' not in data:
|
|
|
|
data['finished'] = 0
|
2014-09-26 01:01:01 +00:00
|
|
|
|
|
|
|
# Fix error: TypeError: exit_json() keywords must be strings
|
2018-10-12 14:04:37 +00:00
|
|
|
data = dict([(to_native(k), v) for k, v in iteritems(data)])
|
2014-09-26 01:01:01 +00:00
|
|
|
|
|
|
|
module.exit_json(**data)
|
|
|
|
|
2016-12-05 18:00:03 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|