Merge pull request #33211 from cachedout/user_kill

Don't try to kill a parent proc if we can't
This commit is contained in:
Thomas S Hatch 2016-05-12 15:29:50 -06:00
commit 698f1eb657

View File

@ -68,10 +68,12 @@ def minion_process(queue):
time.sleep(5)
try:
# check pid alive (Unix only trick!)
if os.getuid() == 0 and not salt.utils.is_windows():
os.kill(parent_pid, 0)
except OSError:
except OSError as exc:
# forcibly exit, regular sys.exit raises an exception-- which
# isn't sufficient in a thread
log.error('Minion process encountered exception: {0}'.format(exc))
os._exit(999)
if not salt.utils.is_windows():
thread = threading.Thread(target=suicide_when_without_parent, args=(os.getppid(),))