#!/bin/sh . /etc/rc.conf case "$1" in start) exit 0 ;; stop) exit 0; ;; restart) exit 0; ;; status) exit 0; ;; *) echo "usage: $0 {start | stop | restart | status }" exit 1 esac