re-add init script after it had been lost in a rebase

This commit is contained in:
Christof Schulze 2016-05-03 00:28:16 +02:00
parent 5998775f9c
commit 8d1678d7e3

View File

@ -0,0 +1,38 @@
#!/bin/sh /etc/rc.common
. $IPKG_INSTROOT/lib/functions/network.sh
START=70
pidfile='/var/run/babeld.pid'
CONFIGFILE='/var/etc/gluon-babel.conf'
EXTRA_COMMANDS="status"
EXTRA_HELP=" status Dump Babel's table to the log file."
start() {
mkdir -p /var/lib
mkdir -p /var/etc
/lib/gluon/gluon-mesh-babel/mkconfig "$CONFIGFILE"
/usr/sbin/babeld -D -I "$pidfile" -c "$CONFIGFILE"
# Wait for the pidfile to appear
for i in 1 2
do
[ -f "$pidfile" ] || sleep 1
done
[ -f "$pidfile" ] || (echo "Failed to start babeld"; exit 42)
}
stop() {
[ -f "$pidfile" ] && kill $(cat $pidfile)
# avoid race-condition on restart: wait for
# babeld to die for real.
[ -f "$pidfile" ] && sleep 1
[ -f "$pidfile" ] && sleep 1
[ -f "$pidfile" ] && sleep 1
[ -f "$pidfile" ] && exit 42
}
status() {
[ -f "$pidfile" ] && kill -USR1 $(cat $pidfile)
}