meshenger/lazyinstall/meshenger

16 lines
220 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
#meshenger startup script
2014-05-28 23:35:01 +02:00
START=101
#STOP=15
start() {
echo 'starting Meshenger'
2014-05-28 23:35:01 +02:00
/usr/bin/python /root/meshenger/main.py &
}
stop() {
echo 'Killing Meshenger'
killall python
}