skip to Main Content

Why is it necessary to terminate a process when the child process has already ignored the SIGINT signal? – CentOS

My English is not good. I'm reading the code from ansible 1.1 The following is taken from "ansible-1.1/lib/ansible/runner/__init__.py" def _executor_hook(job_queue, result_queue): # attempt workaround of https://github.com/newsapps/beeswithmachineguns/issues/17 # this function also not present in CentOS 6 if HAS_ATFORK: atfork() signal.signal(signal.SIGINT, signal.SIG_IGN)…

VIEW QUESTION
Back To Top
Search