#!/bin/sh
#
# $FreeBSD: branches/2018Q4/www/hiawatha/files/hiawatha.in 354744 2014-05-21 11:49:17Z feld $
#

# PROVIDE: hiawatha
# REQUIRE: LOGIN cleanvar
# KEYWORD: shutdown

# Add the following line(s) to /etc/rc.conf:
# hiawatha_enable (bool):		Set to "NO" by default, set it
#					to "YES" to enable hiawatha.

. /etc/rc.subr

name=hiawatha
rcvar=hiawatha_enable

load_rc_config $name

: ${hiawatha_enable:=NO}

command="/usr/local/sbin/${name}"
pidfile=${hiawatha_pidfile:-"/var/run/hiawatha.pid"}

stop_postcmd="rm -f ${pidfile}"

run_rc_command "$1"
