Move the stop_dhcp in start_dhcp again before the

delay. It seems that dhclient really needs the time
to get killed.
This commit is contained in:
mbr 2003-08-12 22:44:48 +00:00
parent 2c925dc3c2
commit 1c212393d2

View File

@ -81,6 +81,7 @@ stop_dhcp() {
}
start_dhcp() {
stop_dhcp
case ${pccard_ether_delay} in
[Nn][Oo])
;;
@ -88,7 +89,6 @@ start_dhcp() {
sleep ${pccard_ether_delay}
;;
esac
stop_dhcp
[ -n "$dhcp_program" ] && dhclient_program="$dhcp_program"
[ -n "$dhcp_flags" ] && dhclient_flags="$dhcp_flags"
if [ -x "${dhclient_program}" ]; then