19 lines
454 B
Python
19 lines
454 B
Python
import shlex
|
|
|
|
def get_app_class(template):
|
|
class App(template):
|
|
def F_main(self):
|
|
with open('/etc/init/start') as f:
|
|
lines = f.readlines()
|
|
for line in lines:
|
|
if line.strip():
|
|
last_pid = self.os.launch(*shlex.split(line))
|
|
|
|
self.transfer_console(last_pid)
|
|
self.next_function = 'loop'
|
|
|
|
def F_loop(self):
|
|
pass
|
|
|
|
return App
|