#!/bin/sh /etc/rc.common

START=09
STOP=89

start() {
	service_start /usr/bin/pcat-manager -D
}

stop() {
	service_stop /usr/bin/pcat-manager
}

restart() {
	stop
	start
}

shutdown() {
	stop
}
