implement: export __target_host in remote exec
Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
parent
16b118b38e
commit
17e7642615
1 changed files with 10 additions and 2 deletions
|
@ -111,6 +111,10 @@ class Remote(object):
|
||||||
"""
|
"""
|
||||||
assert isinstance(command, (list, tuple)), "list or tuple argument expected, got: %s" % command
|
assert isinstance(command, (list, tuple)), "list or tuple argument expected, got: %s" % command
|
||||||
|
|
||||||
|
# export target_host for use in __remote_{exec,copy} scripts
|
||||||
|
os_environ = os.environ.copy()
|
||||||
|
os_environ['__target_host'] = self.target_host
|
||||||
|
|
||||||
# can't pass environment to remote side, so prepend command with
|
# can't pass environment to remote side, so prepend command with
|
||||||
# variable declarations
|
# variable declarations
|
||||||
if env:
|
if env:
|
||||||
|
@ -122,7 +126,7 @@ class Remote(object):
|
||||||
self.log.debug("Remote run: %s", command)
|
self.log.debug("Remote run: %s", command)
|
||||||
try:
|
try:
|
||||||
if return_output:
|
if return_output:
|
||||||
return subprocess.check_output(command).decode()
|
return subprocess.check_output(command, env=os_environ).decode()
|
||||||
else:
|
else:
|
||||||
subprocess.check_call(command)
|
subprocess.check_call(command)
|
||||||
except subprocess.CalledProcessError:
|
except subprocess.CalledProcessError:
|
||||||
|
@ -140,6 +144,10 @@ class Remote(object):
|
||||||
command = self._exec.split()
|
command = self._exec.split()
|
||||||
command.append(self.target_host)
|
command.append(self.target_host)
|
||||||
|
|
||||||
|
# export target_host for use in __remote_{exec,copy} scripts
|
||||||
|
os_environ = os.environ.copy()
|
||||||
|
os_environ['__target_host'] = self.target_host
|
||||||
|
|
||||||
# can't pass environment to remote side, so prepend command with
|
# can't pass environment to remote side, so prepend command with
|
||||||
# variable declarations
|
# variable declarations
|
||||||
if env:
|
if env:
|
||||||
|
@ -154,7 +162,7 @@ class Remote(object):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if return_output:
|
if return_output:
|
||||||
return subprocess.check_output(command).decode()
|
return subprocess.check_output(command, env=os_environ).decode()
|
||||||
else:
|
else:
|
||||||
subprocess.check_call(command)
|
subprocess.check_call(command)
|
||||||
except subprocess.CalledProcessError as error:
|
except subprocess.CalledProcessError as error:
|
||||||
|
|
Loading…
Reference in a new issue