2012-07-14 17:59:12 +02:00
|
|
|
# this is a virtual module that is entirely implemented server side
|
2012-09-17 15:11:04 +02:00
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: raw
|
2012-09-19 16:09:26 +02:00
|
|
|
short_description: Executes a low-down and dirty SSH command
|
2012-11-03 23:52:59 +01:00
|
|
|
options: {}
|
2012-09-19 16:09:26 +02:00
|
|
|
description:
|
|
|
|
- Executes a low-down and dirty SSH command, not going through the module
|
|
|
|
subsystem. This is useful and should only be done in two cases. The
|
2012-11-21 18:49:30 +01:00
|
|
|
first case is installing C(python-simplejson) on older (Python 2.4 and
|
2012-09-19 16:09:26 +02:00
|
|
|
before) hosts that need it as a dependency to run modules, since nearly
|
|
|
|
all core modules require it. Another is speaking to any devices such as
|
|
|
|
routers that do not have any Python installed. In any other case, using
|
|
|
|
the M(shell) or M(command) module is much more appropriate. Arguments
|
|
|
|
given to M(raw) are run directly through the configured remote shell and
|
|
|
|
only output is returned. There is no error detection or change handler
|
|
|
|
support for this module
|
2012-09-17 15:11:04 +02:00
|
|
|
examples:
|
|
|
|
- code: ansible newhost.example.com -m raw -a "yum -y install python-simplejson"
|
2012-11-21 18:49:30 +01:00
|
|
|
description: Example from C(/usr/bin/ansible) to bootstrap a legacy python 2.4 host
|
2012-10-01 12:37:51 +02:00
|
|
|
author: Michael DeHaan
|
2012-09-17 15:11:04 +02:00
|
|
|
'''
|