freebsd-dev/etc/rc.d/hostapd
Henrik Brix Andersen 4ec59b0317 Add reload functionality.
PR:		conf/116659
Approved by:	sam, erwin (mentor)
2007-11-14 21:19:15 +00:00

25 lines
384 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: hostapd
# REQUIRE: mountcritremote
# KEYWORD: nojail shutdown
. /etc/rc.subr
name="hostapd"
command="/usr/sbin/${name}"
rcvar=`set_rcvar`
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"