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

isisd: fix srv6 exit statements #17720

Merged
merged 1 commit into from
Dec 27, 2024
Merged

isisd: fix srv6 exit statements #17720

merged 1 commit into from
Dec 27, 2024

Conversation

jvoss
Copy link
Contributor

@jvoss jvoss commented Dec 25, 2024

Fix missing and misplaced exit statements to show running-config output.

Before:

router isis ISIS_CORE
 [...]
 segment-routing srv6
  locator ISIS_LOC
 exit    <<<<<<< always placed after locator
  node-msd
    [...]
  exit    <<<<<<< missing
  interface dum6
exit

After:

router isis ISIS_CORE
 [...]
 segment-routing srv6
  locator ISIS_LOC
  node-msd
   [...]
  exit
  interface dum6
 exit
exit

Related #16694

Fix missing and misplaced `exit` statements to `show running-config` output.

Before:
```
router isis ISIS_CORE
 [...]
 segment-routing srv6
  locator ISIS_LOC
 exit    <<<<<<< always placed after locator
  node-msd
    [...]
  exit    <<<<<<< missng
  interface dum6
exit
```

After:
```
router isis ISIS_CORE
 [...]
 segment-routing srv6
  locator ISIS_LOC
  node-msd
   [...]
  exit
  interface dum6
 exit
exit
```

Related FRRouting#16694

Signed-off-by: Jonathan Voss <[email protected]>
@idryzhov idryzhov merged commit 1d63ddd into FRRouting:master Dec 27, 2024
11 checks passed
@jvoss jvoss deleted the srv6_cli branch December 27, 2024 13:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants