8 lines
146 B
Python
8 lines
146 B
Python
"""
|
|
Allows the PyNVOS "kernel" to "boot"
|
|
Version: 1.0.0
|
|
"""
|
|
from vfs.sys.jail_mgr import PyJail
|
|
krnl = PyJail()
|
|
krnl.run_program("/bin/shell.py")
|