28 lines
790 B
Bash
28 lines
790 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: wpa_supplicant,v 1.3 2009/09/30 18:17:22 apb 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_command="/usr/sbin/wpa_cli reconfigure"
|
|
extra_commands="reload"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|