blob: a8d833fb2e8526e78782ea158e950fe94025f88a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/files/wpa_supplicant-0.3.3-init.d,v 1.1 2005/01/03 11:09:01 brix Exp $
depend() {
before net
}
start() {
ebegin "Starting wpa_supplicant"
if [ ! -f /etc/wpa_supplicant.conf ]; then
eerror "Configuration file /etc/wpa_supplicant.conf not found"
return 1
fi
if [ -z "$INTERFACES" ]; then
eerror "No interfaces specified in /etc/conf.d/wpa_supplicant"
return 1
fi
for IFACE in $INTERFACES; do
ebegin " ${IFACE}"
eval ARGS_IFACE=\"\$\{ARGS_$IFACE\}\"
/sbin/ifconfig ${IFACE} up
start-stop-daemon --start --quiet --exec /usr/sbin/wpa_supplicant \
-- -B -i${IFACE} -c/etc/wpa_supplicant.conf ${ARGS} ${ARGS_IFACE}
eend $?
done
}
stop() {
ebegin "Stopping wpa_supplicant"
start-stop-daemon --stop --quiet --exec /usr/sbin/wpa_supplicant
eend ${?}
}
|