#!/bin/sh
#
# $NetBSD: wpa_supplicant,v 1.5 2014/01/23 07:26:51 spz Exp $
#

# PROVIDE: wpa_supplicant
# REQUIRE: network mountcritlocal
# BEFORE:  NETWORKING dhclient
#
#	We need to run a command that resides in /usr/sbin, and the
#	/usr file system is traditionally mounted by mountcritremote.
#	However, we cannot depend on mountcritremote, because that
#	would introduce a circular dependency.	Therefore, if you need
#	wpa_supplicant to start during the boot process, you should
#	ensure that the /usr file system is mounted by mountcritlocal,
#	not by mountcritremote.

$_rc_subr_loaded . /etc/rc.subr

name="wpa_supplicant"
rcvar=$name
command="/usr/sbin/wpa_supplicant"
reload_cmd="/usr/sbin/wpa_cli reconfigure"
extra_commands="reload"
start_precmd="wpa_supplicant_precmd"

wpa_supplicant_precmd()
{
    if [ ! -d /var/run/wpa_supplicant ]; then
        mkdir -p -m 755 /var/run/wpa_supplicant
    fi
}

load_rc_config $name
run_rc_command "$1"
