From 4070a22c5b5c7fc3c8ea84747a42cfeb0d83b643 Mon Sep 17 00:00:00 2001 From: Trishna Guha Date: Wed, 23 Aug 2017 21:03:09 +0530 Subject: [PATCH] Tested against IOS version (#28559) Signed-off-by: Trishna Guha --- lib/ansible/modules/network/ios/ios_banner.py | 2 ++ lib/ansible/modules/network/ios/ios_command.py | 2 ++ lib/ansible/modules/network/ios/ios_config.py | 2 ++ lib/ansible/modules/network/ios/ios_facts.py | 2 ++ lib/ansible/modules/network/ios/ios_interface.py | 2 ++ lib/ansible/modules/network/ios/ios_logging.py | 4 +++- lib/ansible/modules/network/ios/ios_static_route.py | 2 ++ lib/ansible/modules/network/ios/ios_system.py | 2 ++ lib/ansible/modules/network/ios/ios_user.py | 4 +++- lib/ansible/modules/network/ios/ios_vrf.py | 2 ++ 10 files changed, 22 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/network/ios/ios_banner.py b/lib/ansible/modules/network/ios/ios_banner.py index a85b5c7872a..0787c2a7b6c 100644 --- a/lib/ansible/modules/network/ios/ios_banner.py +++ b/lib/ansible/modules/network/ios/ios_banner.py @@ -32,6 +32,8 @@ description: running Cisco IOS. It allows playbooks to add or remote banner text from the active running configuration. extends_documentation_fragment: ios +notes: + - Tested against IOS 15.6 options: banner: description: diff --git a/lib/ansible/modules/network/ios/ios_command.py b/lib/ansible/modules/network/ios/ios_command.py index 1c90df5efa9..f875901f6fb 100644 --- a/lib/ansible/modules/network/ios/ios_command.py +++ b/lib/ansible/modules/network/ios/ios_command.py @@ -35,6 +35,8 @@ description: - This module does not support running commands in configuration mode. Please use M(ios_config) to configure IOS devices. extends_documentation_fragment: ios +notes: + - Tested against IOS 15.6 options: commands: description: diff --git a/lib/ansible/modules/network/ios/ios_config.py b/lib/ansible/modules/network/ios/ios_config.py index 4585477777c..8576ef0989d 100644 --- a/lib/ansible/modules/network/ios/ios_config.py +++ b/lib/ansible/modules/network/ios/ios_config.py @@ -33,6 +33,8 @@ description: an implementation for working with IOS configuration sections in a deterministic way. extends_documentation_fragment: ios +notes: + - Tested against IOS 15.6 options: lines: description: diff --git a/lib/ansible/modules/network/ios/ios_facts.py b/lib/ansible/modules/network/ios/ios_facts.py index dcfcd24a30b..99d8985fb17 100644 --- a/lib/ansible/modules/network/ios/ios_facts.py +++ b/lib/ansible/modules/network/ios/ios_facts.py @@ -33,6 +33,8 @@ description: module will always collect a base set of facts from the device and can enable or disable collection of additional facts. extends_documentation_fragment: ios +notes: + - Tested against IOS 15.6 options: gather_subset: description: diff --git a/lib/ansible/modules/network/ios/ios_interface.py b/lib/ansible/modules/network/ios/ios_interface.py index a66f446df1c..1329a2ff73d 100644 --- a/lib/ansible/modules/network/ios/ios_interface.py +++ b/lib/ansible/modules/network/ios/ios_interface.py @@ -22,6 +22,8 @@ short_description: Manage Interface on Cisco IOS network devices description: - This module provides declarative management of Interfaces on Cisco IOS network devices. +notes: + - Tested against IOS 15.6 options: name: description: diff --git a/lib/ansible/modules/network/ios/ios_logging.py b/lib/ansible/modules/network/ios/ios_logging.py index 2eeabb0c6a3..8e1b903c769 100644 --- a/lib/ansible/modules/network/ios/ios_logging.py +++ b/lib/ansible/modules/network/ios/ios_logging.py @@ -27,11 +27,13 @@ DOCUMENTATION = """ --- module: ios_logging version_added: "2.4" -author: "Trishna Guha (@trishnag)" +author: "Trishna Guha (@trishnaguha)" short_description: Manage logging on network devices description: - This module provides declarative management of logging on Cisco Ios devices. +notes: + - Tested against IOS 15.6 options: dest: description: diff --git a/lib/ansible/modules/network/ios/ios_static_route.py b/lib/ansible/modules/network/ios/ios_static_route.py index db7c9f84799..5e8a8fe676e 100644 --- a/lib/ansible/modules/network/ios/ios_static_route.py +++ b/lib/ansible/modules/network/ios/ios_static_route.py @@ -33,6 +33,8 @@ short_description: Manage static IP routes on Cisco IOS network devices description: - This module provides declarative management of static IP routes on Cisco IOS network devices. +notes: + - Tested against IOS 15.6 options: prefix: description: diff --git a/lib/ansible/modules/network/ios/ios_system.py b/lib/ansible/modules/network/ios/ios_system.py index 91b8b4c3795..0255c91b314 100644 --- a/lib/ansible/modules/network/ios/ios_system.py +++ b/lib/ansible/modules/network/ios/ios_system.py @@ -33,6 +33,8 @@ description: parameters or remove those parameters from the device active configuration. extends_documentation_fragment: ios +notes: + - Tested against IOS 15.6 options: hostname: description: diff --git a/lib/ansible/modules/network/ios/ios_user.py b/lib/ansible/modules/network/ios/ios_user.py index 30856a5776d..c0f4ec59881 100644 --- a/lib/ansible/modules/network/ios/ios_user.py +++ b/lib/ansible/modules/network/ios/ios_user.py @@ -27,7 +27,7 @@ DOCUMENTATION = """ --- module: ios_user version_added: "2.4" -author: "Trishna Guha (@trishnag)" +author: "Trishna Guha (@trishnaguha)" short_description: Manage the aggregate of local users on Cisco IOS device description: - This module provides declarative management of the local usernames @@ -35,6 +35,8 @@ description: either individual usernames or the aggregate of usernames in the current running config. It also supports purging usernames from the configuration that are not explicitly defined. +notes: + - Tested against IOS 15.6 options: aggregate: description: diff --git a/lib/ansible/modules/network/ios/ios_vrf.py b/lib/ansible/modules/network/ios/ios_vrf.py index 7d97f7832bd..f1035628f55 100644 --- a/lib/ansible/modules/network/ios/ios_vrf.py +++ b/lib/ansible/modules/network/ios/ios_vrf.py @@ -33,6 +33,8 @@ description: the entire VRF collection. It also supports purging VRF definitions from the configuration that are not explicitly defined. extends_documentation_fragment: ios +notes: + - Tested against IOS 15.6 options: vrfs: description: