#!/bin/bash

cd /opt/motionbox

if [ -f /opt/motionbox/start.sh ]; then
	./start.sh
elif [ -f /opt/motionbox/MotionBox ]; then
	./MotionBox
else
	echo "can't find a motionbox launcher, exiting..."
fi
 
exit 0
