2014-09-26 01:01:01 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
|
2016-05-11 04:57:05 +00:00
|
|
|
# (c) 2016, Toshio Kuratomi <tkuratomi@ansible.com>
|
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
|
2014-09-26 01:01:01 +00:00
|
|
|
|
|
|
|
|
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'}
|
|
|
|
|
2014-09-26 01:01:01 +00:00
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: ping
|
|
|
|
version_added: historical
|
2017-06-28 18:08:04 +00:00
|
|
|
short_description: Try to connect to host, verify a usable python and return C(pong) on success
|
2014-09-26 01:01:01 +00:00
|
|
|
description:
|
|
|
|
- A trivial test module, this module always returns C(pong) on successful
|
|
|
|
contact. It does not make sense in playbooks, but it is useful from
|
2018-01-17 14:02:06 +00:00
|
|
|
C(/usr/bin/ansible) to verify the ability to login and that a usable Python is configured.
|
|
|
|
- This is NOT ICMP ping, this is just a trivial test module that requires Python on the remote-node.
|
2017-10-08 07:33:51 +00:00
|
|
|
- For Windows targets, use the M(win_ping) module instead.
|
2018-01-17 14:02:06 +00:00
|
|
|
- For Network targets, use the M(net_ping) module instead.
|
2017-06-26 15:26:53 +00:00
|
|
|
notes:
|
2017-10-08 07:33:51 +00:00
|
|
|
- For Windows targets, use the M(win_ping) module instead.
|
2018-01-17 14:02:06 +00:00
|
|
|
- For Network targets, use the M(net_ping) module instead.
|
2017-06-28 18:08:04 +00:00
|
|
|
options:
|
|
|
|
data:
|
|
|
|
description:
|
|
|
|
- Data to return for the C(ping) return value.
|
|
|
|
- If this parameter is set to C(crash), the module will cause an exception.
|
|
|
|
default: pong
|
2015-10-21 17:57:47 +00:00
|
|
|
author:
|
2017-06-28 18:08:04 +00:00
|
|
|
- Ansible Core Team
|
|
|
|
- Michael DeHaan
|
2014-09-26 01:01:01 +00:00
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
2015-10-21 17:57:47 +00:00
|
|
|
# Test we can logon to 'webservers' and execute python with json lib.
|
2017-06-28 18:08:04 +00:00
|
|
|
# ansible webservers -m ping
|
|
|
|
|
|
|
|
# Example from an Ansible Playbook
|
|
|
|
- ping:
|
|
|
|
|
|
|
|
# Induce an exception to see what happens
|
|
|
|
- ping:
|
|
|
|
data: crash
|
|
|
|
'''
|
|
|
|
|
|
|
|
RETURN = '''
|
|
|
|
ping:
|
|
|
|
description: value provided with the data parameter
|
|
|
|
returned: success
|
|
|
|
type: string
|
|
|
|
sample: pong
|
2014-09-26 01:01:01 +00:00
|
|
|
'''
|
|
|
|
|
2016-05-11 04:57:05 +00:00
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
2014-09-26 01:01:01 +00:00
|
|
|
|
2017-05-01 15:52:25 +00:00
|
|
|
|
2014-09-26 01:01:01 +00:00
|
|
|
def main():
|
|
|
|
module = AnsibleModule(
|
2016-05-11 04:58:22 +00:00
|
|
|
argument_spec=dict(
|
2017-06-28 18:08:04 +00:00
|
|
|
data=dict(type='str', default='pong'),
|
2014-09-26 01:01:01 +00:00
|
|
|
),
|
2016-05-11 04:58:22 +00:00
|
|
|
supports_check_mode=True
|
2014-09-26 01:01:01 +00:00
|
|
|
)
|
2017-06-28 18:08:04 +00:00
|
|
|
|
|
|
|
if module.params['data'] == 'crash':
|
|
|
|
raise Exception("boom")
|
|
|
|
|
|
|
|
result = dict(
|
|
|
|
ping=module.params['data'],
|
|
|
|
)
|
|
|
|
|
2014-09-26 01:01:01 +00:00
|
|
|
module.exit_json(**result)
|
|
|
|
|
2017-05-01 15:52:25 +00:00
|
|
|
|
2016-05-11 04:57:05 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|