2006-12-10 23:29:44 +01:00
|
|
|
{dhcp, nettools}:
|
2006-11-19 23:05:49 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
name = "dhclient";
|
|
|
|
|
|
|
|
job = "
|
|
|
|
description \"DHCP client\"
|
|
|
|
|
2006-11-20 18:28:08 +01:00
|
|
|
start on network-interfaces/started
|
2006-11-20 18:06:44 +01:00
|
|
|
stop on network-interfaces/stop
|
2006-11-19 23:05:49 +01:00
|
|
|
|
|
|
|
script
|
2006-11-24 17:31:01 +01:00
|
|
|
# Determine the interface on which to start dhclient.
|
2006-11-19 23:05:49 +01:00
|
|
|
interfaces=
|
2006-11-24 17:31:01 +01:00
|
|
|
|
|
|
|
# !!! apparent race; operstate seems to have a slight delay, so
|
|
|
|
# if dhclient is started right after network-interfaces, we don't
|
|
|
|
# always see all the interfaces.
|
|
|
|
|
|
|
|
#for i in $(cd /sys/class/net && ls -d *); do
|
|
|
|
# if test \"$i\" != \"lo\" -a \"$(cat /sys/class/net/$i/operstate)\" != 'down'; then
|
|
|
|
# interfaces=\"$interfaces $i\"
|
|
|
|
# fi
|
|
|
|
#done
|
|
|
|
|
2006-12-10 23:29:44 +01:00
|
|
|
for i in $(${nettools}/sbin/ifconfig | grep '^[^ ]' | sed 's/ .*//'); do
|
2006-11-24 17:31:01 +01:00
|
|
|
if test \"$i\" != \"lo\"; then
|
2006-11-19 23:05:49 +01:00
|
|
|
interfaces=\"$interfaces $i\"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if test -z \"$interfaces\"; then
|
|
|
|
echo 'No interfaces on which to start dhclient!'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2006-11-24 17:38:22 +01:00
|
|
|
mkdir -m 755 -p /var/state/dhcp
|
|
|
|
|
2006-11-19 23:05:49 +01:00
|
|
|
exec ${dhcp}/sbin/dhclient -d $interfaces
|
|
|
|
end script
|
|
|
|
";
|
|
|
|
|
|
|
|
}
|