#! /bin/sh

start() {
      echo -n "Setting GPIOS... "
      /etc/set_gpio.sh &
      echo "done"
}


stop() {
      echo -n "Still cannot be stopped :)"
      echo "done"
}

restart() {
      stop
      start
}

# See how we were called.
case "$1" in
  start)
      start
      ;;
  stop)
      stop
      ;;
  restart|reload)
      restart
      ;;
  *)
      echo "Usage: $0 {start|stop|reload|restart}"
      exit 1
esac

exit $?
