Hi,
I just downgraded to check that this does not happen with version
0.9.8.10-4.
Also, note that arping is an optional package. So, I guess it should be
listed in the dependencies...
FWIW I attached a patch that sets the hardcoded path of arping
correctly.
Regards,
Stanley
Index: network-manager-0.9.10.0/src/devices/nm-device.c
===================================================================
--- network-manager-0.9.10.0.orig/src/devices/nm-device.c
+++ network-manager-0.9.10.0/src/devices/nm-device.c
@@ -4429,7 +4429,7 @@ start_sharing (NMDevice *self, NMIP4Conf
static void
send_arps (NMDevice *self, const char *mode_arg)
{
- const char *argv[] = { "/sbin/arping", mode_arg, "-q", "-I", nm_device_get_ip_iface (self), "-c", "1", NULL, NULL };
+ const char *argv[] = { "/usr/sbin/arping", mode_arg, "-q", "-I", nm_device_get_ip_iface (self), "-c", "1", NULL, NULL };
int ip_arg = G_N_ELEMENTS (argv) - 2;
NMConnection *connection;
NMSettingIP4Config *s_ip4;