aboutsummaryrefslogtreecommitdiff
path: root/tests/atf_python/sys
diff options
context:
space:
mode:
authorKristof Provost <kp@FreeBSD.org>2025-05-07 15:29:17 +0000
committerKristof Provost <kp@FreeBSD.org>2025-05-08 13:10:26 +0000
commit6ae89b2f152f9770646bdd66e53df702b99eb0ad (patch)
tree3fc8c6b40794753e6a9c4aad6e04dfb81c0b5499 /tests/atf_python/sys
parent1f8b1a3fac5f7fd28bd2eb09a13272774d2b6899 (diff)
Diffstat (limited to 'tests/atf_python/sys')
-rw-r--r--tests/atf_python/sys/net/vnet.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/atf_python/sys/net/vnet.py b/tests/atf_python/sys/net/vnet.py
index 6da5f2625990..68c8ce4e0cba 100644
--- a/tests/atf_python/sys/net/vnet.py
+++ b/tests/atf_python/sys/net/vnet.py
@@ -134,7 +134,7 @@ class VnetInterface(object):
self.run_cmd(cmd)
def enable_ipv6(self):
- cmd = "/usr/sbin/ndp -i {} -disabled".format(self.name)
+ cmd = "/usr/sbin/ndp -i {} -- -disabled".format(self.name)
self.run_cmd(cmd)
def has_tentative(self) -> bool: