summaryrefslogtreecommitdiff
path: root/debian/patches/fix-arping-path.patch
blob: d23762f3c2f93486d06f599c8ed8da599667854c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From: Laurent Bigonville <bigon@bigon.be>
Date: Mon, 27 Oct 2014 11:08:02 +0100
Subject: fix arping path

Debian provides two arping implementations:
/usr/sbin/arping, shipped by the arping package,
/usr/bin/arping, shipped by the iputils-arping package.

They aren't completely command line compatible, so we choose the one
which upstream (Fedora) is using, i.e. iputils-arping.

Closes: #755039
---
 src/devices/nm-device.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c
index 4752628..25b17b3 100644
--- a/src/devices/nm-device.c
+++ b/src/devices/nm-device.c
@@ -5137,7 +5137,7 @@ send_arps (NMDevice *self, const char *mode_arg)
 	if (num == 0)
 		return;
 
-	argv[0] = nm_utils_find_helper ("arping", NULL, NULL);
+	argv[0] = nm_utils_find_helper ("arping", "/usr/bin/arping", NULL);
 	if (!argv[0]) {
 		_LOGW (LOGD_DEVICE | LOGD_IP4, "arping could not be found; no ARPs will be sent");
 		return;