1 | # The wpa_supplicant daemon settings
|
---|
2 |
|
---|
3 | #the name of the wpa_supplicant client and daemon if they change
|
---|
4 |
|
---|
5 | WPA_CLIENT_NAME="wpa_cli"
|
---|
6 | WPA_DAEMON_NAME="wpa_supplicant"
|
---|
7 |
|
---|
8 | # here is the directory where wpa_supplicant.conf should be
|
---|
9 |
|
---|
10 | WPA_CONFIG_DIR="/etc/sysconfig/wpa_supplicant"
|
---|
11 |
|
---|
12 | # here is the name of your wpa_supplicant.conf file
|
---|
13 |
|
---|
14 | WPA_CONFIG_FILE="wpa_supplicant.conf"
|
---|
15 |
|
---|
16 | # here is the name of your action file
|
---|
17 |
|
---|
18 | WPA_ACTION_FILE=$WPA_CONFIG_DIR/wpa_actions
|
---|
19 |
|
---|
20 | # This is what need wpa_supplicant
|
---|
21 |
|
---|
22 | WPA_PID_FILE=/var/run/wpa_supplicant.pid
|
---|
23 | WPA_GLOBAL_FILE=/var/run/wpa_supplicant-global
|
---|
24 | WPA_ACCESS_DIR=/var/run/wpa_supplicant
|
---|