Merge pull request #35459 from thatch45/shim_fix

Ensure that output for salt-ssh gets back
This commit is contained in:
Mike Place 2016-08-16 10:29:16 +09:00 committed by GitHub
commit d8c35b5260

View file

@ -230,7 +230,7 @@ def main(argv): # pylint: disable=W0613
subprocess.call(salt_argv)
shutil.rmtree(OPTIONS.saltdir)
else:
os.execv(sys.executable, salt_argv)
subprocess.call(salt_argv)
if OPTIONS.cmd_umask is not None:
os.umask(old_umask)