blob: 7e06d974d12a7beb86765390ecd76836be256e8c [file] [log] [blame]
#!/bin/sh
case "$1" in
start)
(
if is-tv-box; then
wait-until-created /tmp/startupvideo.done
SERIALNUMBER=$(hnvram -qr 1ST_SERIAL_NUMBER)
PLATFORM=$(cat /etc/platform)
/app/client/dialserver -M $PLATFORM -U $SERIALNUMBER 2>&1 | logos dialserver &
fi
) &
;;
stop)
pkillwait -x dialserver
;;
restart)
$0 stop; $0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac