Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

T5807: fix op-mode command <show nat66> (backport #2612) #2614

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src/op_mode/nat.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@
from vyos.utils.process import cmd
from vyos.utils.dict import dict_search

base = 'nat'
unconf_message = 'NAT is not configured'

ArgDirection = typing.Literal['source', 'destination']
ArgFamily = typing.Literal['inet', 'inet6']

Expand Down Expand Up @@ -293,8 +290,9 @@ def _verify(func):
@wraps(func)
def _wrapper(*args, **kwargs):
config = ConfigTreeQuery()
base = 'nat66' if 'inet6' in sys.argv[1:] else 'nat'
if not config.exists(base):
raise vyos.opmode.UnconfiguredSubsystem(unconf_message)
raise vyos.opmode.UnconfiguredSubsystem(f'{base.upper()} is not configured')
return func(*args, **kwargs)
return _wrapper

Expand Down