mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
Update vt.py
Add check for base OS running salt. BSD-like OS break at this point
This commit is contained in:
parent
fe4a09d4f7
commit
aafb4a98c3
@ -523,6 +523,8 @@ class Terminal(object):
|
||||
os.close(tty_fd)
|
||||
|
||||
# Verify we now have a controlling tty.
|
||||
if os.name != 'posix':
|
||||
# Only do this check in not BSD-like operating systems. BSD-like operating systems breaks at this point
|
||||
tty_fd = os.open('/dev/tty', os.O_WRONLY)
|
||||
if tty_fd < 0:
|
||||
raise TerminalException(
|
||||
|
Loading…
Reference in New Issue
Block a user