1e474d3d93
I've had a case of a machine where eth0 was appearing a bit later after the boot, and appearing _downed_. ifplugd then fails to detect "link up". Thus, depending on how service startup ("ip link set dev eth0 up") races with driver initialization, ethernet randomly fails to initialize on boot. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
23 lines
445 B
Bash
Executable File
23 lines
445 B
Bash
Executable File
#!/bin/sh
|
|
|
|
exec 2>&1
|
|
exec </dev/null
|
|
|
|
pwd="$PWD"
|
|
|
|
if="${PWD##*/dhcp_}"
|
|
|
|
echo "* Upping iface $if"
|
|
# "or sleep" idiom prevents rapid respawning if iface does not exist
|
|
ip link set dev "$if" up || { sleep 5; exit; }
|
|
|
|
##echo "* Powersave disable on $if"
|
|
##iw dev "$if" set power_save off
|
|
|
|
echo "* Starting wpa_supplicant on $if [$$]"
|
|
exec \
|
|
env - PATH="$PATH" \
|
|
softlimit \
|
|
setuidgid root \
|
|
wpa_supplicant -i "$if" -c "$pwd/wpa_supplicant.conf" -d
|