2011-09-23 18:21:10 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# 2011 Nico Schottelius (nico-cdist at schottelius.org)
|
|
|
|
#
|
|
|
|
# This file is part of cdist.
|
|
|
|
#
|
|
|
|
# cdist 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.
|
|
|
|
#
|
|
|
|
# cdist 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 cdist. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2011-09-26 08:17:02 +00:00
|
|
|
import logging
|
2011-10-06 11:37:12 +00:00
|
|
|
import os
|
2011-09-26 08:17:02 +00:00
|
|
|
import subprocess
|
|
|
|
|
2011-09-26 08:28:57 +00:00
|
|
|
log = logging.getLogger(__name__)
|
2011-09-23 18:35:13 +00:00
|
|
|
|
2011-09-26 13:42:39 +00:00
|
|
|
import cdist
|
|
|
|
|
2011-10-11 13:47:32 +00:00
|
|
|
class ExecWrapper(object):
|
|
|
|
def __init__(self, remote_exec, remote_copy, target_host):
|
|
|
|
self.remote_exec = remote_exec
|
|
|
|
|
2011-09-26 14:21:56 +00:00
|
|
|
def shell_run_or_debug_fail(script, *args, remote_prefix=False, **kargs):
|
2011-09-23 18:21:10 +00:00
|
|
|
# Manually execute /bin/sh, because sh -e does what we want
|
|
|
|
# and sh -c -e does not exit if /bin/false called
|
|
|
|
args[0][:0] = [ "/bin/sh", "-e" ]
|
|
|
|
|
2011-09-26 14:21:56 +00:00
|
|
|
if remote_prefix:
|
2011-10-06 14:30:06 +00:00
|
|
|
remote_prefix = os.environ['__remote_exec'].split()
|
2011-10-10 13:38:38 +00:00
|
|
|
remote_prefix.append(os.environ['__target_host'])
|
2011-10-06 14:30:06 +00:00
|
|
|
args[0][:0] = remote_prefix
|
2011-09-23 18:21:10 +00:00
|
|
|
|
|
|
|
log.debug("Shell exec cmd: %s", args)
|
2011-09-26 14:03:53 +00:00
|
|
|
|
|
|
|
if 'env' in kargs:
|
|
|
|
log.debug("Shell exec env: %s", kargs['env'])
|
|
|
|
|
2011-09-23 18:21:10 +00:00
|
|
|
try:
|
|
|
|
subprocess.check_call(*args, **kargs)
|
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
log.error("Code that raised the error:\n")
|
2011-10-06 11:37:12 +00:00
|
|
|
|
2011-10-06 11:39:08 +00:00
|
|
|
if remote_prefix:
|
|
|
|
run_or_fail(["cat", script], remote_prefix=remote_prefix)
|
2011-09-26 14:21:56 +00:00
|
|
|
|
2011-09-23 18:21:10 +00:00
|
|
|
else:
|
|
|
|
try:
|
|
|
|
script_fd = open(script)
|
|
|
|
print(script_fd.read())
|
|
|
|
script_fd.close()
|
|
|
|
except IOError as error:
|
2011-09-26 13:42:39 +00:00
|
|
|
raise cdist.Error(str(error))
|
2011-09-23 18:21:10 +00:00
|
|
|
|
2011-09-26 13:42:39 +00:00
|
|
|
raise cdist.Error("Command failed (shell): " + " ".join(*args))
|
2011-09-23 18:21:10 +00:00
|
|
|
except OSError as error:
|
2011-09-26 13:42:39 +00:00
|
|
|
raise cdist.Error(" ".join(*args) + ": " + error.args[1])
|
2011-09-23 18:21:10 +00:00
|
|
|
|
2011-09-26 14:21:56 +00:00
|
|
|
def run_or_fail(*args, remote_prefix=False, **kargs):
|
|
|
|
if remote_prefix:
|
2011-10-06 14:30:06 +00:00
|
|
|
remote_prefix = os.environ['__remote_exec'].split()
|
2011-10-10 13:38:38 +00:00
|
|
|
remote_prefix.append(os.environ['__target_host'])
|
2011-10-06 14:30:06 +00:00
|
|
|
args[0][:0] = remote_prefix
|
2011-09-23 18:21:10 +00:00
|
|
|
|
|
|
|
log.debug("Exec: " + " ".join(*args))
|
|
|
|
try:
|
|
|
|
subprocess.check_call(*args, **kargs)
|
|
|
|
except subprocess.CalledProcessError:
|
2011-09-26 13:42:39 +00:00
|
|
|
raise cdist.Error("Command failed: " + " ".join(*args))
|
2011-09-23 18:21:10 +00:00
|
|
|
except OSError as error:
|
2011-09-26 13:42:39 +00:00
|
|
|
raise cdist.Error(" ".join(*args) + ": " + error.args[1])
|
2011-10-11 13:47:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def remote_mkdir(self, directory):
|
|
|
|
"""Create directory on remote side"""
|
|
|
|
cdist.exec.run_or_fail(["mkdir", "-p", directory], remote_prefix=True)
|
|
|
|
|
|
|
|
def remove_remote_path(self, destination):
|
|
|
|
"""Ensure path on remote side vanished"""
|
|
|
|
cdist.exec.run_or_fail(["rm", "-rf", destination], remote_prefix=True)
|
|
|
|
|
|
|
|
def transfer_path(self, source, destination):
|
|
|
|
"""Transfer directory and previously delete the remote destination"""
|
|
|
|
self.remove_remote_path(destination)
|
|
|
|
cdist.exec.run_or_fail(os.environ['__remote_copy'].split() +
|
|
|
|
["-r", source, self.target_host + ":" + destination])
|