2014-09-26 01:01:01 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2017-09-30 12:53:36 +00:00
|
|
|
# Copyright: (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>, and others
|
|
|
|
# Copyright: (c) 2016, Toshio Kuratomi <tkuratomi@ansible.com>
|
2014-09-26 01:01:01 +00:00
|
|
|
#
|
2017-07-29 07:20:36 +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: command
|
|
|
|
short_description: Executes a command on a remote node
|
2015-07-30 21:04:41 +00:00
|
|
|
version_added: historical
|
2014-09-26 01:01:01 +00:00
|
|
|
description:
|
2017-02-13 14:02:34 +00:00
|
|
|
- The C(command) module takes the command name followed by a list of space-delimited arguments.
|
2014-09-26 01:01:01 +00:00
|
|
|
- The given command will be executed on all selected nodes. It will not be
|
|
|
|
processed through the shell, so variables like C($HOME) and operations
|
2016-09-02 19:26:33 +00:00
|
|
|
like C("<"), C(">"), C("|"), C(";") and C("&") will not work (use the M(shell)
|
2014-09-26 01:01:01 +00:00
|
|
|
module if you need these features).
|
2017-06-26 15:26:53 +00:00
|
|
|
- For Windows targets, use the M(win_command) module instead.
|
2014-09-26 01:01:01 +00:00
|
|
|
options:
|
|
|
|
free_form:
|
|
|
|
description:
|
2017-03-28 23:49:43 +00:00
|
|
|
- The command module takes a free form command to run. There is no parameter actually named 'free form'.
|
2014-09-26 01:01:01 +00:00
|
|
|
See the examples!
|
2017-03-28 23:49:43 +00:00
|
|
|
required: yes
|
2014-09-26 01:01:01 +00:00
|
|
|
creates:
|
|
|
|
description:
|
2017-03-28 23:49:43 +00:00
|
|
|
- A filename or (since 2.0) glob pattern, when it already exists, this step will B(not) be run.
|
2014-09-26 01:01:01 +00:00
|
|
|
removes:
|
|
|
|
description:
|
2017-03-28 23:49:43 +00:00
|
|
|
- A filename or (since 2.0) glob pattern, when it does not exist, this step will B(not) be run.
|
2014-09-26 01:01:01 +00:00
|
|
|
version_added: "0.8"
|
|
|
|
chdir:
|
|
|
|
description:
|
2017-03-28 23:49:43 +00:00
|
|
|
- Change into this directory before running the command.
|
2014-09-26 01:01:01 +00:00
|
|
|
version_added: "0.6"
|
|
|
|
warn:
|
|
|
|
description:
|
2017-03-28 23:49:43 +00:00
|
|
|
- If command_warnings are on in ansible.cfg, do not warn about this particular line if set to C(no).
|
|
|
|
type: bool
|
|
|
|
default: 'yes'
|
|
|
|
version_added: "1.8"
|
2017-04-07 11:28:35 +00:00
|
|
|
stdin:
|
|
|
|
version_added: "2.4"
|
|
|
|
description:
|
|
|
|
- Set the stdin of the command directly to the specified value.
|
|
|
|
required: false
|
|
|
|
default: null
|
2014-09-26 01:01:01 +00:00
|
|
|
notes:
|
2017-01-10 16:17:33 +00:00
|
|
|
- If you want to run a command through the shell (say you are using C(<), C(>), C(|), etc), you actually want the M(shell) module instead.
|
2017-02-13 14:02:34 +00:00
|
|
|
The C(command) module is much more secure as it's not affected by the user's environment.
|
2017-01-10 16:17:33 +00:00
|
|
|
- " C(creates), C(removes), and C(chdir) can be specified after the command.
|
|
|
|
For instance, if you only want to run a command if a certain file does not exist, use this."
|
2017-03-28 23:49:43 +00:00
|
|
|
- The C(executable) parameter is removed since version 2.4. If you have a need for this parameter, use the M(shell) module instead.
|
|
|
|
- For Windows targets, use the M(win_command) module instead.
|
2017-01-27 23:20:31 +00:00
|
|
|
author:
|
2015-06-15 19:53:30 +00:00
|
|
|
- Ansible Core Team
|
|
|
|
- Michael DeHaan
|
2014-09-26 01:01:01 +00:00
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
2017-01-10 16:17:33 +00:00
|
|
|
- name: return motd to registered var
|
|
|
|
command: cat /etc/motd
|
|
|
|
register: mymotd
|
2014-09-26 01:01:01 +00:00
|
|
|
|
2017-01-10 16:17:33 +00:00
|
|
|
- name: Run the command if the specified file does not exist.
|
|
|
|
command: /usr/bin/make_database.sh arg1 arg2 creates=/path/to/database
|
2014-09-26 01:01:01 +00:00
|
|
|
|
2017-01-10 16:17:33 +00:00
|
|
|
# You can also use the 'args' form to provide the options.
|
|
|
|
- name: This command will change the working directory to somedir/ and will only run when /path/to/database doesn't exist.
|
|
|
|
command: /usr/bin/make_database.sh arg1 arg2
|
2014-09-26 01:01:01 +00:00
|
|
|
args:
|
|
|
|
chdir: somedir/
|
|
|
|
creates: /path/to/database
|
2017-01-10 16:17:33 +00:00
|
|
|
|
2017-02-09 17:13:22 +00:00
|
|
|
- name: safely use templated variable to run command. Always use the quote filter to avoid injection issues.
|
2017-01-10 16:17:33 +00:00
|
|
|
command: cat {{ myfile|quote }}
|
|
|
|
register: myoutput
|
2014-09-26 01:01:01 +00:00
|
|
|
'''
|
|
|
|
|
2017-09-30 05:50:39 +00:00
|
|
|
RETURN = '''
|
|
|
|
cmd:
|
|
|
|
description: the cmd that was run on the remote machine
|
|
|
|
returned: always
|
|
|
|
type: list
|
|
|
|
sample:
|
|
|
|
- echo
|
|
|
|
- hello
|
|
|
|
delta:
|
|
|
|
description: cmd end time - cmd start time
|
|
|
|
returned: always
|
|
|
|
type: string
|
2017-09-30 12:53:36 +00:00
|
|
|
sample: 0:00:00.001529
|
2017-09-30 05:50:39 +00:00
|
|
|
end:
|
|
|
|
description: cmd end time
|
|
|
|
returned: always
|
|
|
|
type: string
|
2017-09-30 17:44:33 +00:00
|
|
|
sample: '2017-09-29 22:03:48.084657'
|
2017-09-30 05:50:39 +00:00
|
|
|
start:
|
|
|
|
description: cmd start time
|
|
|
|
returned: always
|
|
|
|
type: string
|
2017-09-30 17:44:33 +00:00
|
|
|
sample: '2017-09-29 22:03:48.083128'
|
2017-09-30 05:50:39 +00:00
|
|
|
'''
|
|
|
|
|
2016-08-24 15:27:36 +00:00
|
|
|
import datetime
|
|
|
|
import glob
|
|
|
|
import os
|
2017-07-29 07:20:36 +00:00
|
|
|
import shlex
|
2016-08-24 15:27:36 +00:00
|
|
|
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
|
2016-10-03 21:09:42 +00:00
|
|
|
|
2017-03-28 23:49:43 +00:00
|
|
|
def check_command(module, commandline):
|
2017-08-04 06:39:13 +00:00
|
|
|
arguments = {'chown': 'owner', 'chmod': 'mode', 'chgrp': 'group',
|
|
|
|
'ln': 'state=link', 'mkdir': 'state=directory',
|
|
|
|
'rmdir': 'state=absent', 'rm': 'state=absent', 'touch': 'state=touch'}
|
2017-10-02 21:33:13 +00:00
|
|
|
commands = {'curl': 'get_url or uri', 'wget': 'get_url or uri',
|
2017-08-04 06:39:13 +00:00
|
|
|
'svn': 'subversion', 'service': 'service',
|
|
|
|
'mount': 'mount', 'rpm': 'yum, dnf or zypper', 'yum': 'yum', 'apt-get': 'apt',
|
|
|
|
'tar': 'unarchive', 'unzip': 'unarchive', 'sed': 'template or lineinfile',
|
|
|
|
'dnf': 'dnf', 'zypper': 'zypper'}
|
|
|
|
become = ['sudo', 'su', 'pbrun', 'pfexec', 'runas', 'pmrun']
|
2014-09-26 01:01:01 +00:00
|
|
|
command = os.path.basename(commandline.split()[0])
|
|
|
|
if command in arguments:
|
2017-03-28 23:49:43 +00:00
|
|
|
module.warn("Consider using file module with %s rather than running %s" % (arguments[command], command))
|
2014-09-26 01:01:01 +00:00
|
|
|
if command in commands:
|
2017-03-28 23:49:43 +00:00
|
|
|
module.warn("Consider using %s module rather than running %s" % (commands[command], command))
|
2015-07-27 15:02:24 +00:00
|
|
|
if command in become:
|
2017-03-28 23:49:43 +00:00
|
|
|
module.warn("Consider using 'become', 'become_method', and 'become_user' rather than running %s" % (command,))
|
2014-09-26 01:01:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
|
|
|
|
# the command module is the one ansible module that does not take key=value args
|
|
|
|
# hence don't copy this one if you are looking to build others!
|
2014-11-19 21:54:47 +00:00
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec=dict(
|
2017-08-04 06:39:13 +00:00
|
|
|
_raw_params=dict(),
|
|
|
|
_uses_shell=dict(type='bool', default=False),
|
|
|
|
chdir=dict(type='path'),
|
|
|
|
executable=dict(),
|
|
|
|
creates=dict(type='path'),
|
|
|
|
removes=dict(type='path'),
|
|
|
|
warn=dict(type='bool', default=True),
|
2017-04-07 11:28:35 +00:00
|
|
|
stdin=dict(required=False),
|
2014-11-19 21:54:47 +00:00
|
|
|
)
|
|
|
|
)
|
2014-09-26 01:01:01 +00:00
|
|
|
|
2014-11-19 21:54:47 +00:00
|
|
|
shell = module.params['_uses_shell']
|
2014-09-26 01:01:01 +00:00
|
|
|
chdir = module.params['chdir']
|
|
|
|
executable = module.params['executable']
|
2016-10-03 21:09:42 +00:00
|
|
|
args = module.params['_raw_params']
|
|
|
|
creates = module.params['creates']
|
|
|
|
removes = module.params['removes']
|
2014-10-08 11:30:20 +00:00
|
|
|
warn = module.params['warn']
|
2017-04-07 11:28:35 +00:00
|
|
|
stdin = module.params['stdin']
|
2014-09-26 01:01:01 +00:00
|
|
|
|
2017-03-28 23:49:43 +00:00
|
|
|
if not shell and executable:
|
|
|
|
module.warn("As of Ansible 2.4, the parameter 'executable' is no longer supported with the 'command' module. Not using '%s'." % executable)
|
|
|
|
executable = None
|
|
|
|
|
2017-09-15 18:57:50 +00:00
|
|
|
if not args or args.strip() == '':
|
2014-09-26 01:01:01 +00:00
|
|
|
module.fail_json(rc=256, msg="no command given")
|
|
|
|
|
|
|
|
if chdir:
|
2016-08-24 15:27:36 +00:00
|
|
|
chdir = os.path.abspath(chdir)
|
2014-09-26 01:01:01 +00:00
|
|
|
os.chdir(chdir)
|
|
|
|
|
|
|
|
if creates:
|
|
|
|
# do not run the command if the line contains creates=filename
|
|
|
|
# and the filename already exists. This allows idempotence
|
|
|
|
# of command executions.
|
2016-08-24 15:27:36 +00:00
|
|
|
if glob.glob(creates):
|
2014-09-26 01:01:01 +00:00
|
|
|
module.exit_json(
|
|
|
|
cmd=args,
|
2016-08-24 15:27:36 +00:00
|
|
|
stdout="skipped, since %s exists" % creates,
|
2014-09-26 01:01:01 +00:00
|
|
|
changed=False,
|
|
|
|
rc=0
|
|
|
|
)
|
|
|
|
|
|
|
|
if removes:
|
2016-10-03 21:09:42 +00:00
|
|
|
# do not run the command if the line contains removes=filename
|
|
|
|
# and the filename does not exist. This allows idempotence
|
|
|
|
# of command executions.
|
2016-08-24 15:27:36 +00:00
|
|
|
if not glob.glob(removes):
|
2014-09-26 01:01:01 +00:00
|
|
|
module.exit_json(
|
|
|
|
cmd=args,
|
2016-08-24 15:27:36 +00:00
|
|
|
stdout="skipped, since %s does not exist" % removes,
|
2014-09-26 01:01:01 +00:00
|
|
|
changed=False,
|
|
|
|
rc=0
|
|
|
|
)
|
|
|
|
|
|
|
|
if warn:
|
2017-03-28 23:49:43 +00:00
|
|
|
check_command(module, args)
|
2014-09-26 01:01:01 +00:00
|
|
|
|
|
|
|
if not shell:
|
|
|
|
args = shlex.split(args)
|
|
|
|
startd = datetime.datetime.now()
|
|
|
|
|
2017-04-07 11:28:35 +00:00
|
|
|
rc, out, err = module.run_command(args, executable=executable, use_unsafe_shell=shell, encoding=None, data=stdin)
|
2014-09-26 01:01:01 +00:00
|
|
|
|
|
|
|
endd = datetime.datetime.now()
|
|
|
|
delta = endd - startd
|
|
|
|
|
2017-05-20 22:25:57 +00:00
|
|
|
result = dict(
|
2017-08-04 06:39:13 +00:00
|
|
|
cmd=args,
|
|
|
|
stdout=out.rstrip(b"\r\n"),
|
|
|
|
stderr=err.rstrip(b"\r\n"),
|
|
|
|
rc=rc,
|
|
|
|
start=str(startd),
|
|
|
|
end=str(endd),
|
|
|
|
delta=str(delta),
|
|
|
|
changed=True,
|
2014-09-26 01:01:01 +00:00
|
|
|
)
|
|
|
|
|
2017-05-20 22:25:57 +00:00
|
|
|
if rc != 0:
|
|
|
|
module.fail_json(msg='non-zero return code', **result)
|
|
|
|
|
|
|
|
module.exit_json(**result)
|
|
|
|
|
|
|
|
|
2016-08-24 15:27:36 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|