#!/bin/sh
# chkconfig: 2345 64 36
### BEGIN INIT INFO
# Provides:          boot2qt-appcontroller
# Required-Start:    $network
# Required-Stop:     $network
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start boot2qt-appcontroller demo
# Description:       Start boot2qt-appcontroller demo
# X-Start-Before:    
# X-Stop-After:      
# X-Timesys-Start-Number:  64
# X-Timesys-Stop-Number:  36
### END INIT INFO

PATH=/usr/bin:/bin:/usr/sbin:/sbin

case $1 in
'start')
    /usr/bin/appcontroller --launch /usr/bin/qtlauncher &
    ;;
*)
    echo "Usage: $0 [start]"
    ;;
esac

