11 lines
199 B
Python
Executable file
11 lines
199 B
Python
Executable file
#!/usr/bin/python3
|
|
|
|
import sys
|
|
from lit.util import killProcessAndChildrenIsSupported
|
|
|
|
supported, errormsg = killProcessAndChildrenIsSupported()
|
|
|
|
if not supported:
|
|
sys.exit(errormsg)
|
|
|
|
sys.exit()
|