dont use the -i option of xargs

This commit is contained in:
Glenn L McGrath 2002-11-19 09:23:13 +00:00
parent a0d395eac9
commit 83bcba26c0

View File

@ -460,7 +460,7 @@ static int dhcp_up(interface_defn *ifd, execfn *exec)
static int dhcp_down(interface_defn *ifd, execfn *exec)
{
if (execable("/sbin/dhclient")) {
if (!execute("cat /var/run/dhclient.%iface%.pid | xargs -i kill -TERM {}", ifd, exec)) {
if (!execute("cat /var/run/dhclient.%iface%.pid | xargs kill", ifd, exec)) {
return(0);
}
} else if (execable("/sbin/pump")) {
@ -468,7 +468,7 @@ static int dhcp_down(interface_defn *ifd, execfn *exec)
return(0);
}
} else if (execable("/sbin/udhcpc")) {
if (!execute("cat /var/run/udhcpc.%iface%.pid | xargs -i kill -TERM {}", ifd, exec)) {
if (!execute("cat /var/run/udhcpc.%iface%.pid | xargs kill", ifd, exec)) {
return(0);
}
} else if (execable("/sbin/dhcpcd")) {