[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#224663: Summary



To summarize: please change

    else if (stat("/sbin/pump", &stat_buf) == 0)
        dhcp_client = PUMP;
    else if (stat("/sbin/udhcpc", &stat_buf) == 0)
        dhcp_client = UDHCPC;

to:

    else if (stat("/sbin/udhcpc", &stat_buf) == 0)
        dhcp_client = UDHCPC;
    else if (stat("/sbin/pump", &stat_buf) == 0)
        dhcp_client = PUMP;


So UDHCPC is used instead of PUMP (pump is going to be removed soon,
but at the moment it's still installed and hence DHCP fails).  Please
make this change before beta2.

-- 
Martin Michlmayr
tbm@cyrius.com



Reply to: