From 3cc277bc08d451c5e7cb4abde43a092fe6d949c3 Mon Sep 17 00:00:00 2001 From: jrk07 Date: Thu, 10 Mar 2016 12:54:41 -0800 Subject: [PATCH] Doc Update: ios_template.py title and example ios_template.py was named ios_config when viewing docs. The examples also had net_config still. Updated those here. --- network/ios/ios_template.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/network/ios/ios_template.py b/network/ios/ios_template.py index b0a2bf9efb1..d80d097bd82 100644 --- a/network/ios/ios_template.py +++ b/network/ios/ios_template.py @@ -17,7 +17,7 @@ # DOCUMENTATION = """ --- -module: ios_config +module: ios_template version_added: "2.1" author: "Peter sprygada (@privateip)" short_description: Manage Cisco IOS device configurations over SSH @@ -91,16 +91,16 @@ options: EXAMPLES = """ - name: push a configuration onto the device - net_config: + ios_template: src: config.j2 - name: forceable push a configuration onto the device - net_config: + ios_template: src: config.j2 force: yes - name: provide the base configuration for comparision - net_config: + ios_template: src: candidate_config.txt config: current_config.txt """