#!/bin/sh /etc/rc.common
START=99
EXTRA_COMMANDS="status"
EXTRA_HELP="        status Print the status of the service"

start() {
	 /usr/bin/shareblock.sh start
}

stop() {
	/usr/bin/shareblock.sh stop
}

status() {
	echo ''
}

restart() {
	stop
	sleep 1
	start
}