2012-02-23 23:19:06 +01:00
#!/usr/bin/python
2012-08-03 03:20:43 +02:00
# -*- coding: utf-8 -*-
2012-02-23 23:19:06 +01:00
2012-02-29 01:08:09 +01:00
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>, and others
#
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
2012-02-24 10:35:51 +01:00
2012-02-23 23:19:06 +01:00
import sys
import datetime
2012-02-24 10:35:51 +01:00
import traceback
2012-10-01 08:30:53 +02:00
import re
2012-03-14 05:39:18 +01:00
import shlex
import os
2012-07-25 00:52:52 +02:00
2012-09-28 21:55:49 +02:00
DOCUMENTATION = '''
---
module: command
2013-11-19 00:55:49 +01:00
version_added: historical
2012-09-28 21:55:49 +02:00
short_description: Executes a command on a remote node
description:
2012-11-21 18:49:30 +01:00
- The M(command) module takes the command name followed by a list of space-delimited arguments.
2012-09-28 21:55:49 +02: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
2014-01-27 21:56:52 +01:00
like C("<"), C(">"), C("|"), and C("&") will not work (use the M(shell)
module if you need these features).
2012-09-28 21:55:49 +02:00
options:
free_form:
description:
- the command module takes a free form command to run
required: true
default: null
aliases: []
creates:
description:
- a filename, when it already exists, this step will B(not) be run.
required: no
default: null
2012-10-03 04:32:17 +02:00
removes:
description:
- a filename, when it does not exist, this step will B(not) be run.
version_added: "0.8"
required: no
default: null
2012-09-28 21:55:49 +02:00
chdir:
description:
- cd into this directory before running the command
2013-11-28 03:23:03 +01:00
version_added: "0.6"
2012-09-28 21:55:49 +02:00
required: false
default: null
2012-11-08 14:56:16 +01:00
executable:
description:
- change the shell used to execute the command. Should be an absolute path to the executable.
required: false
default: null
version_added: "0.9"
2012-09-28 21:55:49 +02:00
notes:
- 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. The
M(command) module is much more secure as it's not affected by the user's
environment.
2013-06-14 11:53:43 +02: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."
2012-09-28 21:55:49 +02:00
author: Michael DeHaan
'''
2013-06-14 11:53:43 +02:00
EXAMPLES = '''
# Example from Ansible Playbooks
- command: /sbin/shutdown -t now
# Run the command if the specified file does not exist
- command: /usr/bin/make_database.sh arg1 arg2 creates=/path/to/database
'''
2012-07-25 00:52:52 +02: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!
module = CommandModule(argument_spec=dict())
shell = module.params['shell']
2012-07-30 17:39:45 +02:00
chdir = module.params['chdir']
2012-11-08 14:56:16 +01:00
executable = module.params['executable']
2012-07-25 00:52:52 +02:00
args = module.params['args']
2013-02-28 23:38:52 +01:00
creates = module.params['creates']
removes = module.params['removes']
2012-07-25 00:52:52 +02:00
2012-08-17 03:40:52 +02:00
if args.strip() == '':
2012-10-30 10:36:11 +01:00
module.fail_json(rc=256, msg="no command given")
2012-08-14 02:17:07 +02:00
2012-07-30 17:39:45 +02:00
if chdir:
2013-05-29 17:05:11 +02:00
os.chdir(chdir)
2012-07-30 17:39:45 +02:00
2013-02-28 23:38:52 +01:00
if creates:
# do not run the command if the line contains creates=filename
# and the filename already exists. This allows idempotence
# of command executions.
v = os.path.expanduser(creates)
if os.path.exists(v):
module.exit_json(
cmd=args,
stdout="skipped, since %s exists" % v,
skipped=True,
changed=False,
stderr=False,
rc=0
)
if removes:
# do not run the command if the line contains removes=filename
# and the filename does not exist. This allows idempotence
# of command executions.
v = os.path.expanduser(removes)
if not os.path.exists(v):
module.exit_json(
cmd=args,
stdout="skipped, since %s does not exist" % v,
skipped=True,
changed=False,
stderr=False,
rc=0
)
2012-07-25 00:52:52 +02:00
if not shell:
args = shlex.split(args)
startd = datetime.datetime.now()
2014-03-10 22:11:24 +01:00
rc, out, err = module.run_command(args, executable=executable, use_unsafe_shell=shell)
2012-07-25 00:52:52 +02:00
endd = datetime.datetime.now()
delta = endd - startd
if out is None:
2012-08-11 18:35:58 +02:00
out = ''
2012-07-25 00:52:52 +02:00
if err is None:
2012-08-11 18:35:58 +02:00
err = ''
2012-07-25 00:52:52 +02:00
module.exit_json(
cmd = args,
2012-10-25 14:26:37 +02:00
stdout = out.rstrip("\r\n"),
stderr = err.rstrip("\r\n"),
Update modules to use run_command in module_common.py
This updates apt, apt_repository, command, cron, easy_install, facter,
fireball, git, group, mount, ohai, pip, service, setup, subversion,
supervisorctl, svr4pkg, user, and yum to take advantage of run_command
in module_common.py.
2013-01-12 07:10:21 +01:00
rc = rc,
2012-07-25 00:52:52 +02:00
start = str(startd),
end = str(endd),
delta = str(delta),
changed = True
)
2013-12-02 21:11:23 +01:00
# import module snippets
from ansible.module_utils.basic import *
2012-07-25 00:52:52 +02:00
# only the command module should ever need to do this
# everything else should be simple key=value
class CommandModule(AnsibleModule):
2012-08-01 03:23:34 +02:00
def _handle_aliases(self):
2013-02-25 23:07:47 +01:00
return {}
2012-08-01 03:23:34 +02:00
def _check_invalid_arguments(self):
pass
2012-07-25 00:52:52 +02:00
def _load_params(self):
''' read the input and return a dictionary and the arguments string '''
2012-08-03 03:20:43 +02:00
args = MODULE_ARGS
2012-07-25 00:52:52 +02:00
params = {}
2012-07-30 17:39:45 +02:00
params['chdir'] = None
2013-02-28 23:38:52 +01:00
params['creates'] = None
params['removes'] = None
2012-07-25 00:52:52 +02:00
params['shell'] = False
2012-11-08 14:56:16 +01:00
params['executable'] = None
2012-07-25 00:52:52 +02:00
if args.find("#USE_SHELL") != -1:
2012-08-12 00:39:09 +02:00
args = args.replace("#USE_SHELL", "")
params['shell'] = True
2012-07-25 00:52:52 +02:00
2014-01-31 23:09:10 +01:00
r = re.compile(r'(^|\s)(creates|removes|chdir|executable|NO_LOG)=(?P<quote>[\'"])?(.*?)(?(quote)(?<!\\)(?P=quote))((?<!\\)(?=\s)|$)')
2012-10-01 08:30:53 +02:00
for m in r.finditer(args):
v = m.group(4).replace("\\", "")
if m.group(2) == "creates":
2013-02-28 23:38:52 +01:00
params['creates'] = v
2012-10-01 08:30:53 +02:00
elif m.group(2) == "removes":
2013-02-28 23:38:52 +01:00
params['removes'] = v
2012-10-01 08:30:53 +02:00
elif m.group(2) == "chdir":
2012-09-04 06:22:53 +02:00
v = os.path.expanduser(v)
2013-08-21 07:48:42 +02:00
v = os.path.abspath(v)
2012-07-30 17:39:45 +02:00
if not (os.path.exists(v) and os.path.isdir(v)):
2012-10-30 10:36:11 +01:00
self.fail_json(rc=258, msg="cannot change to directory '%s': path does not exist" % v)
2012-07-30 17:39:45 +02:00
params['chdir'] = v
2012-11-08 14:56:16 +01:00
elif m.group(2) == "executable":
v = os.path.expanduser(v)
2013-08-21 07:48:42 +02:00
v = os.path.abspath(v)
2012-11-08 14:56:16 +01:00
if not (os.path.exists(v)):
self.fail_json(rc=258, msg="cannot use executable '%s': file does not exist" % v)
params['executable'] = v
2014-01-31 23:09:10 +01:00
elif m.group(2) == "NO_LOG":
params['NO_LOG'] = self.boolean(v)
2012-10-01 08:30:53 +02:00
args = r.sub("", args)
params['args'] = args
2012-09-29 21:04:05 +02:00
return (params, params['args'])
2012-07-25 00:52:52 +02:00
main()