mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
wpa_supplicant: log to stdout instead of syslog
This commit is contained in:
parent
3afc0fa672
commit
ee1b5b65ca
1 changed files with 2 additions and 2 deletions
|
@ -1,10 +1,10 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
if [ -r ./conf ]; then
|
if [ -r ./conf ]; then
|
||||||
. ./conf
|
. ./conf
|
||||||
: ${OPTS:=-M -c ${CONF_FILE:-/etc/wpa_supplicant/wpa_supplicant.conf} ${WPA_INTERFACE:+-i ${WPA_INTERFACE}} ${DRIVER:+-D ${DRIVER}} -s}
|
: ${OPTS:=-M -c ${CONF_FILE:-/etc/wpa_supplicant/wpa_supplicant.conf} ${WPA_INTERFACE:+-i ${WPA_INTERFACE}} ${DRIVER:+-D ${DRIVER}}}
|
||||||
else
|
else
|
||||||
. ./auto
|
. ./auto
|
||||||
OPTS="${AUTO} -s"
|
OPTS="${AUTO}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exec 2>&1
|
exec 2>&1
|
||||||
|
|
Loading…
Add table
Reference in a new issue