diff options
author | ceri <ceri@FreeBSD.org> | 2005-01-17 11:44:30 +0000 |
---|---|---|
committer | ceri <ceri@FreeBSD.org> | 2005-01-17 11:44:30 +0000 |
commit | 75b14935238e7da7c35d459bc4c9be0fe65276f2 (patch) | |
tree | a90a05e621ec8f26c373b4274a9e681c266b1d8b /etc | |
parent | 9d81809b59c1679e46a0792e0424729fc60e42cc (diff) | |
download | FreeBSD-src-75b14935238e7da7c35d459bc4c9be0fe65276f2.zip FreeBSD-src-75b14935238e7da7c35d459bc4c9be0fe65276f2.tar.gz |
The submitter of bin/75786 turned out to not have removable interfaces,
and so the fix committed in r1.42 was not quite correct for the case
where there are two or more DHCP consuming removable interfaces - dhclient
must be restarted so that the other interfaces continue to function
correctly.
Approved by: murray
MFC After: 7 days
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/pccard_ether | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/pccard_ether b/etc/pccard_ether index be5f517..8c7b671 100755 --- a/etc/pccard_ether +++ b/etc/pccard_ether @@ -70,7 +70,7 @@ stop_dhcp() { case ${startstop} in [Ss][Tt][Oo][Pp]) if [ -z "${_nlist}" ]; then - sh /etc/rc.d/dhclient stop + sh /etc/rc.d/dhclient start else start_dhcp_keep_current fi |