Fix invalid arping option
It made little difference and didn't error, but was incorrect.
This commit is contained in:
parent
5eec3e99f8
commit
2b1b78622e
|
@ -119,7 +119,7 @@ def createIPAddress(ipaddr, cidrnetmask, dev):
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
run_os_command(
|
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,
|
dev=dev,
|
||||||
ip=ipaddr
|
ip=ipaddr
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in New Issue