#!/bin/sh
#
# $FreeBSD: stable/7/etc/rc.d/hostapd 231656 2012-02-14 10:17:30Z dougb $
#

# PROVIDE: hostapd
# REQUIRE: mountcritremote
# KEYWORD: nojail shutdown

. /etc/rc.subr

name="hostapd"
rcvar="hostapd_enable"
command="/usr/sbin/${name}"

conf_file="/etc/${name}.conf"
pidfile="/var/run/${name}.pid"

command_args="-P ${pidfile} -B ${conf_file}"
required_files="${conf_file}"
extra_commands="reload"

load_rc_config ${name}
run_rc_command "$1"
