2012-05-31 00:16:31 +00:00
|
|
|
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
|
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
|
|
|
import traceback
|
|
|
|
import os
|
2012-12-23 18:17:07 +00:00
|
|
|
import pipes
|
2012-05-31 00:16:31 +00:00
|
|
|
import shutil
|
|
|
|
import subprocess
|
|
|
|
from ansible import errors
|
2012-08-09 01:09:14 +00:00
|
|
|
from ansible.callbacks import vvv
|
2012-05-31 00:16:31 +00:00
|
|
|
|
2012-08-18 14:52:24 +00:00
|
|
|
class Connection(object):
|
2012-05-31 00:16:31 +00:00
|
|
|
''' Local based connections '''
|
|
|
|
|
2012-08-18 14:52:24 +00:00
|
|
|
def __init__(self, runner, host, port):
|
2012-05-31 00:16:31 +00:00
|
|
|
self.runner = runner
|
|
|
|
self.host = host
|
2012-08-18 14:52:24 +00:00
|
|
|
# port is unused, since this is local
|
|
|
|
self.port = port
|
2012-05-31 00:16:31 +00:00
|
|
|
|
|
|
|
def connect(self, port=None):
|
|
|
|
''' connect to the local host; nothing to do here '''
|
|
|
|
|
|
|
|
return self
|
|
|
|
|
2012-12-23 18:17:07 +00:00
|
|
|
def exec_command(self, cmd, tmp_path, sudo_user, sudoable=False, executable='/bin/sh'):
|
2012-05-31 00:16:31 +00:00
|
|
|
''' run a command on the local host '''
|
2012-07-15 16:29:53 +00:00
|
|
|
|
2012-12-23 18:17:07 +00:00
|
|
|
if not self.runner.sudo or not sudoable:
|
|
|
|
local_cmd = [ executable, '-c', cmd]
|
|
|
|
else:
|
2012-07-18 17:02:56 +00:00
|
|
|
if self.runner.sudo_pass:
|
|
|
|
# NOTE: if someone wants to add sudo w/ password to the local connection type, they are welcome
|
|
|
|
# to do so. The primary usage of the local connection is for crontab and kickstart usage however
|
|
|
|
# so this doesn't seem to be a huge priority
|
2012-07-06 02:21:57 +00:00
|
|
|
raise errors.AnsibleError("sudo with password is presently only supported on the 'paramiko' (SSH) and native 'ssh' connection types")
|
2012-12-23 18:17:07 +00:00
|
|
|
sudocmd = "sudo -u %s -s %s -c %s" % (sudo_user, executable, cmd)
|
|
|
|
local_cmd = ['/bin/sh', '-c', sudocmd]
|
2012-05-31 00:16:31 +00:00
|
|
|
|
2012-12-23 18:17:07 +00:00
|
|
|
vvv("EXEC %s" % local_cmd, host=self.host)
|
|
|
|
p = subprocess.Popen(local_cmd, cwd=self.runner.basedir, executable=executable,
|
2012-05-31 00:16:31 +00:00
|
|
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
stdout, stderr = p.communicate()
|
2012-12-23 00:44:00 +00:00
|
|
|
return (p.returncode, '', stdout, stderr)
|
2012-05-31 00:16:31 +00:00
|
|
|
|
|
|
|
def put_file(self, in_path, out_path):
|
|
|
|
''' transfer a file from local to local '''
|
2012-07-15 16:29:53 +00:00
|
|
|
|
2012-08-09 01:09:14 +00:00
|
|
|
vvv("PUT %s TO %s" % (in_path, out_path), host=self.host)
|
2012-05-31 00:16:31 +00:00
|
|
|
if not os.path.exists(in_path):
|
|
|
|
raise errors.AnsibleFileNotFound("file or module does not exist: %s" % in_path)
|
|
|
|
try:
|
|
|
|
shutil.copyfile(in_path, out_path)
|
|
|
|
except shutil.Error:
|
|
|
|
traceback.print_exc()
|
|
|
|
raise errors.AnsibleError("failed to copy: %s and %s are the same" % (in_path, out_path))
|
|
|
|
except IOError:
|
|
|
|
traceback.print_exc()
|
|
|
|
raise errors.AnsibleError("failed to transfer file to %s" % out_path)
|
|
|
|
|
|
|
|
def fetch_file(self, in_path, out_path):
|
2012-08-09 01:09:14 +00:00
|
|
|
vvv("FETCH %s TO %s" % (in_path, out_path), host=self.host)
|
2012-05-31 00:16:31 +00:00
|
|
|
''' fetch a file from local to local -- for copatibility '''
|
|
|
|
self.put_file(in_path, out_path)
|
|
|
|
|
|
|
|
def close(self):
|
|
|
|
''' terminate the connection; nothing to do here '''
|
|
|
|
pass
|