-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update_snmp_traps
- Loading branch information
Showing
5 changed files
with
13 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
trivial: | ||
- ios_ospfv2 - fix initial_vrf_setup in integration tests which was not working due to missing parent attribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
bugfixes: | ||
- ios_logging_global - fix configuration order to configure discriminator before buffer. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 3 additions & 10 deletions
13
tests/integration/targets/ios_ospfv2/tests/cli/_initial_vrf_setup.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,9 @@ | ||
--- | ||
- name: Create and setup VRF configuration | ||
vars: | ||
cisco.ios.ios_config: | ||
lines: | ||
- ip vrf blue | ||
- rd 100:1 | ||
- route-target export 100:1 | ||
- route-target import 100:1 | ||
- exit | ||
- ip vrf ospf_vrf | ||
- rd 100:2 | ||
- route-target export 100:2 | ||
- route-target import 100:2 | ||
- exit | ||
cisco.ios.ios_config: | ||
config: "{{ lines }}" | ||
parents: | ||
- ip vrf blue |