]> hackdaworld.org Git - hdw-linux/hdw-linux.git/commitdiff
dhclient in /usr/sbin
authorhackbard <hackbard>
Wed, 28 Jul 2004 14:34:29 +0000 (14:34 +0000)
committerhackbard <hackbard>
Wed, 28 Jul 2004 14:34:29 +0000 (14:34 +0000)
doc/CHANGELOG
misc/sysfiles/etc/conf/network

index 53810176be22d7a5458d4a3a6585cce4572ec58b..b1922a3d2bc0b9ddfaf3e2762925ae2ca6942a5f 100644 (file)
@@ -11,7 +11,7 @@
 #########################################
 
 - fixed pkg_dir bug in Create-Binary
-- network config via dhcp
+- network config via dhcp / dhclient in /usr/sbin (bad?)
 - linux config changes, no devfs mount at startup
 - small fixes to hdw-get (still no dep checking)
 - not building qt plugin for licq
index 7cf66457d9e119456c05dd4a3741b6260c8c85e2..6868eec4a86bc0c244c85926213c0b1fa511b391 100644 (file)
@@ -21,7 +21,7 @@ xx() { echo ">> $*" ; eval "$*" ; }
 start_net() {
        if [ ".$DHCP" = ".on" ] ; then
                echo "starting dhclient."
-               /sbin/dhclient -q $IF_0
+               /usr/sbin/dhclient -q $IF_0
        else
                echo "setting up network ..."
                # xx insmod ip_tables
@@ -38,7 +38,7 @@ start_net() {
 stop_net() {
        if [ ".$DHCP" = ".on" ] ; then
                echo "stopping dhclient."
-               killall -15 /sbin/dhclient
+               killall -15 /usr/sbin/dhclient
                ifconfig $IF_0 down
        else
                echo "shutting down network ..."