Bug 425021
| Summary: | start wifi connection with WPA2_Personal and DHCP at boot | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Sergei LITVINENKO <sergei.litvinenko> |
| Component: | wpa_supplicant | Assignee: | Dan Williams <dcbw> |
| Status: | CLOSED DUPLICATE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | low | Docs Contact: | |
| Priority: | low | ||
| Version: | 8 | CC: | ovaldez |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i386 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2007-12-24 22:34:03 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Sergei LITVINENKO
2007-12-14 15:00:00 UTC
The initscripts are ordered according to the dependencies specified in them. I've noticed the same since upgrading to Fedora 8. On Fedora 7, I could start
wpa_supplicant during boot, now on 8, I can't. The diff between the two init
scripts is as follows:
# diff /tmp/wpa_supplicant (f7) /etc/init.d/wpa_supplicant (f8)
21,23d20
< # Check that networking is up.
< [ "$NETWORKING" = "no" ] && exit 0
<
30,31d26
< [ "$INTERFACES" != "" ] || exit 0
< [ "$DRIVERS" != "" ] || exit 0
34,35c29,30
< echo -n $"Starting $prog: "
< daemon $prog -c $conf $INTERFACES $DRIVERS -B
---
> echo -n $"Starting $prog: $conf, $INTERFACES, $DRIVERS"
> daemon $prog -c $conf $INTERFACES $DRIVERS -B -u -f
The error message when wpa_supplicant is started at boot is:
Iniciando wpa_supplicant: /etc/wpa_supplicant/wpa_supplicant.conf,
,dbus_bus_get[ctrl_iface_dbus]: No such file or directory.
(After /etc/wpa_supplicant/wpa_supplicant.conf, there is a comma, a space, and
another comma).
This did not occur with Fedora 7.
Said file has the following contents (key removed)
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=wheel
network={
ssid="andunie"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP
group=TKIP
psk=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
}
|