issue #477: missing stub-su.py from 137f5fa6c5

This commit is contained in:
David Wilson 2019-01-27 01:25:12 +00:00
parent 2f087859bc
commit 0a9c3dcc40
1 changed files with 14 additions and 0 deletions

14
tests/data/stubs/stub-su.py Executable file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env python
import json
import os
import subprocess
import sys
os.environ['ORIGINAL_ARGV'] = json.dumps(sys.argv)
os.environ['THIS_IS_STUB_SU'] = '1'
# This must be a child process and not exec() since Mitogen replaces its stderr
# descriptor, causing the last user of the slave PTY to close it, resulting in
# the master side indicating EIO.
os.execlp('sh', 'sh', '-c', sys.argv[sys.argv.index('-c') + 1])