#!/bin/sh

case "$1" in
  start)
    /root/run-boot.sh
    ;;
  stop|restart|reload)
    ;;
  *)
    exit 1
esac

exit $?
