Ejemplo n.º 1
0
#! /usr/bin/python
# coding=UTF-8
from afruntime.server import daemonize, donothing, launch

daemonize()

from CommandInterface import run as lancerorun
print 'Starting LANCERO'
launch(lancerorun)

from Server import run as p24run
print 'Starting P24'
launch(p24run)

donothing()
Ejemplo n.º 2
0
#! /usr/bin/python
# coding=UTF-8
from afruntime.server import daemonize, donothing, launch

daemonize()

from CommandInterface import run as lancerorun

print 'Starting LANCERO'
launch(lancerorun)

from Sensorics import run as sensoricsrun

print 'Starting Sensorics'
launch(sensoricsrun)

donothing()
Ejemplo n.º 3
0
#! /usr/bin/python
# coding=UTF-8
from afruntime.server import daemonize, donothing, launch

daemonize()

from CommandInterface import run as lancerorun
print 'Starting LANCERO'
launch(lancerorun)

from Sensorics import run as sensoricsrun
print 'Starting Sensorics'
launch(sensoricsrun)

donothing()