diff options
author | Nicolas Fort <nicolasfort1988@gmail.com> | 2023-09-18 14:34:14 +0000 |
---|---|---|
committer | Nicolas Fort <nicolasfort1988@gmail.com> | 2023-09-18 14:34:14 +0000 |
commit | 70f0a6142cc67271e34cf3816490fc8dae784a79 (patch) | |
tree | 796181576292d00f9d78060cd46e2bde99bcad3d /python | |
parent | 8d11722f1829ec0bff048d7b1911ec6c96d1aa37 (diff) | |
download | vyos-1x-70f0a6142cc67271e34cf3816490fc8dae784a79.tar.gz vyos-1x-70f0a6142cc67271e34cf3816490fc8dae784a79.zip |
T5594: vrrp: extend function is_ipv6_tentative
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/util.py b/python/vyos/util.py index e83a17e18..1b16df76b 100644 --- a/python/vyos/util.py +++ b/python/vyos/util.py @@ -935,7 +935,7 @@ def is_ipv6_tentative(iface: str, ipv6_address: str) -> bool: import json from vyos.util import rc_cmd - rc, out = rc_cmd(f'ip -6 --json address show dev {iface} scope global') + rc, out = rc_cmd(f'ip -6 --json address show dev {iface}') if rc: return False |