# HG changeset patch # Parent a93db3ecb8f0e30dde02fc8ce0bddde38d48d8a7 Hurd: use inetutils-ifconfig, fix invocation of inetutils-ifconfig diff --git a/inet.defn b/inet.defn --- a/inet.defn +++ b/inet.defn @@ -360,7 +360,7 @@ This method may be used to define the IPv4 loopback interface. up - inetutils-ifconfig --interface %iface% 127.0.0.1 --up \ + inetutils-ifconfig --interface %iface% --address 127.0.0.1 --up \ if (!iface_is_lo()) down @@ -443,7 +443,7 @@ dhcpcd -k %iface% \ elsif (execable("/sbin/dhcpcd")) - ifconfig --interface %iface% --down + inetutils-ifconfig --interface %iface% --down method bootp description @@ -463,7 +463,7 @@ down ip link set dev %iface% down \ if (execable("/sbin/ip") && iface_is_link()) - ifconfig %iface% down \ + inetutils-ifconfig --interface %iface% --down \ elsif (1) method ppp diff --git a/link.defn b/link.defn --- a/link.defn +++ b/link.defn @@ -41,7 +41,7 @@ method none description up - -inetutils-ifconfig --interface %iface% 127.0.0.1 --up \ + -inetutils-ifconfig --interface %iface% --address 127.0.0.1 --up \ if (iface_is_lo()) down -inetutils-ifconfig --interface %iface% --down \