#!/bin/sh
#
# $FreeBSD: ports/net/dbeacon/files/dbeacon.in,v 1.4 2012/11/17 05:59:58 svnexp Exp $
#
# PROVIDE: dbeacon
# REQUIRE: DAEMON
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable dbeacon.
#
# dbeacon_enable="YES"
# dbeacon_flags=""	Extra flags passed to start command.
#
# See dbeacon(1) for flags.

dbeacon_enable=${dbeacon_enable-"NO"}
dbeacon_flags=${dbeacon_flags-""}

. /etc/rc.subr

name="dbeacon"
rcvar=dbeacon_enable

command="/usr/local/bin/${name}"

load_rc_config $name

run_rc_command "$1"
