diff options
author | Gaige B Paulsen <gaige@cluetrust.net> | 2024-11-09 21:43:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-10 03:43:44 +0100 |
commit | a7ac0fd5ceb993a8fbb256a3fd91d0d6c6531887 (patch) | |
tree | 850997ce4b0543223854a8781d340cf51d2ff468 /plugins/modules/vyos_ospf_interfaces.py | |
parent | 5ae977293c5ddcad6e0cbdcf380c9a99be3bb3b9 (diff) | |
download | vyos.vyos-a7ac0fd5ceb993a8fbb256a3fd91d0d6c6531887.tar.gz vyos.vyos-a7ac0fd5ceb993a8fbb256a3fd91d0d6c6531887.zip |
T6815:Fix compatibility with 1.3-1.5 of VyOS (Step 1) (#352)
* omnibus update for 1.3-1.4 (with some support for 1.5)
(see contents in release fragments)
---------
Co-authored-by: Om Nom <omnom62@outlook.com>
Diffstat (limited to 'plugins/modules/vyos_ospf_interfaces.py')
-rw-r--r-- | plugins/modules/vyos_ospf_interfaces.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/modules/vyos_ospf_interfaces.py b/plugins/modules/vyos_ospf_interfaces.py index c2326895..33290581 100644 --- a/plugins/modules/vyos_ospf_interfaces.py +++ b/plugins/modules/vyos_ospf_interfaces.py @@ -901,7 +901,7 @@ def main(): argument_spec=Ospf_interfacesArgs.argument_spec, mutually_exclusive=[], required_if=[], - supports_check_mode=False, + supports_check_mode=True, ) result = Ospf_interfaces(module).execute_module() |