forked from ungleich-public/cdist
Merge remote-tracking branch 'telmich/master'
This commit is contained in:
commit
fb2a3cb06e
2 changed files with 3 additions and 2 deletions
|
@ -126,7 +126,7 @@ class Explorer(object):
|
||||||
cdist_type = cdist_object.type
|
cdist_type = cdist_object.type
|
||||||
env = self.env.copy()
|
env = self.env.copy()
|
||||||
env.update({
|
env.update({
|
||||||
'__object': cdist_object.absolute_path,
|
'__object': os.path.join(self.remote.object_path, cdist_object.path),
|
||||||
'__object_id': cdist_object.object_id,
|
'__object_id': cdist_object.object_id,
|
||||||
'__object_fq': cdist_object.path,
|
'__object_fq': cdist_object.path,
|
||||||
'__type_explorer': os.path.join(self.remote.type_path, cdist_type.explorer_path)
|
'__type_explorer': os.path.join(self.remote.type_path, cdist_type.explorer_path)
|
||||||
|
|
|
@ -40,7 +40,8 @@ class LocalScriptError(cdist.Error):
|
||||||
self.script_content = script_content
|
self.script_content = script_content
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return "Local script execution failed: %s %s" % (self.script, self.command)
|
plain_command = " ".join(self.command)
|
||||||
|
return "Local script execution failed: %s %s" % (self.script, plain_command)
|
||||||
|
|
||||||
|
|
||||||
class Local(object):
|
class Local(object):
|
||||||
|
|
Loading…
Reference in a new issue