From 2b1b78622ecaa6d85d6fe69cf460a8066b7b8503 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 18 Dec 2019 12:06:40 -0500 Subject: [PATCH] Fix invalid arping option It made little difference and didn't error, but was incorrect. --- node-daemon/pvcd/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-daemon/pvcd/common.py b/node-daemon/pvcd/common.py index 7567b155..45ecf8b9 100644 --- a/node-daemon/pvcd/common.py +++ b/node-daemon/pvcd/common.py @@ -119,7 +119,7 @@ def createIPAddress(ipaddr, cidrnetmask, dev): ) ) run_os_command( - 'arping -P -U -W 0.2 -c5 -I {dev} -S {ip} {ip}'.format( + 'arping -P -U -W 0.2 -c5 -i {dev} -S {ip} {ip}'.format( dev=dev, ip=ipaddr ),