#!/bin/sh

# PROVIDE: hitch
# REQUIRE: LOGIN varnishd
# KEYWORD: shutdown

#
# Add some of the following variables to /etc/rc.conf to configure hitch:
# hitch_enable (bool):	Set to "NO" by default.
#				Set it to "YES" to enable hitch.
# hitch_config (str):		Default "/usr/local/etc/hitch.conf"
#				Set it to the full path to the config file
#				that hitch will use during the automated
#				start-up.
# hitch_pidfile (str):	Default "/usr/local/var/hitch/hitch.pid"
#				Set it to the value of 'pid' in
#				the hitch.conf file.
#

. /etc/rc.subr

name="hitch"
rcvar=hitch_enable

load_rc_config $name

: ${hitch_enable="NO"}
: ${hitch_config="/usr/local/etc/hitch.conf"}
: ${hitch_huser:=hitch}
: ${hitch_hgroup:=hitch}

command="/usr/local/sbin/hitch"
command_args="--daemon -u ${hitch_huser} -g ${hitch_hgroup} -s --config=${hitch_config}"
extra_commands=reload

required_files=${hitch_config}
run_rc_command "$1"
