#!/bin/sh
#

start()
{
    /usr/bin/launch-app.sh &
}

case "$1" in

"start")
    start
    ;;

"stop")
    ;;

esac
