Fix invalid arping option

It made little difference and didn't error, but was incorrect.
This commit is contained in:
Joshua Boniface 2019-12-18 12:06:40 -05:00
parent 5eec3e99f8
commit 2b1b78622e
1 changed files with 1 additions and 1 deletions

View File

@ -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
), ),