diff options
author | steve <steve@FreeBSD.org> | 1999-02-22 02:55:18 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-02-22 02:55:18 +0000 |
commit | be84afbece177626b09bbe8a087042338a2b250a (patch) | |
tree | 6f0af89bbdcc3572716d611a883f58b3b1074aa3 /etc | |
parent | 16fb6ab9d74d16f2fdd87fe23a4f069477fc58ee (diff) | |
download | FreeBSD-src-be84afbece177626b09bbe8a087042338a2b250a.zip FreeBSD-src-be84afbece177626b09bbe8a087042338a2b250a.tar.gz |
dhclient is now in /sbin.
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/pccard_ether | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/pccard_ether b/etc/pccard_ether index 1c6081e..45f95a6 100755 --- a/etc/pccard_ether +++ b/etc/pccard_ether @@ -1,6 +1,6 @@ #!/bin/sh - # -# $Id: pccard_ether,v 1.9 1998/09/02 01:34:56 brian Exp $ +# $Id: pccard_ether,v 1.10 1999/02/10 18:08:16 jkh Exp $ # # pccard_ether interfacename [ifconfig option] # @@ -16,12 +16,12 @@ fi if [ "x$pccard_ifconfig" != "xNO" ] ; then if [ "x$pccard_ifconfig" = "xDHCP" ] ; then - if [ -f /usr/local/sbin/dhclient ] ; then + if [ -f /sbin/dhclient ] ; then if [ -s /var/run/dhclient.pid ] ; then kill `cat /var/run/dhclient.pid` rm /var/run/dhclient.pid fi - /usr/local/sbin/dhclient + /sbin/dhclient elif [ -f /usr/local/sbin/dhcpc ] ; then if [ -s /var/run/dhcpc.pid ] ; then kill `cat /var/run/dhcpc.pid` |