NetBSD/etc/rc.d/wpa_supplicant
spz 8797028bc7 - make etc/rc.d/wpa_supplicant create directory /var/run/wpa_supplicant
on startup
- create share/examples/wpa_supplicant/wpa_supplicant.conf and make it
  known in the relevant places. Improvements welcome, my point was
  ctrl_interface and "you seriously want this"
2014-01-23 07:26:50 +00:00

36 lines
953 B
Bash

#!/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"