From 33ae15e070617cc1f3abd47191e63db2e09d7edd Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Mon, 4 Mar 2019 01:13:16 +0100 Subject: [PATCH] mso_schema_template: Fix examples (#53237) The examples were using the wrong module. --- lib/ansible/modules/network/aci/mso_schema_template.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/network/aci/mso_schema_template.py b/lib/ansible/modules/network/aci/mso_schema_template.py index b6361a3846b..8bb68c648d0 100644 --- a/lib/ansible/modules/network/aci/mso_schema_template.py +++ b/lib/ansible/modules/network/aci/mso_schema_template.py @@ -68,7 +68,7 @@ EXAMPLES = r''' delegate_to: localhost - name: Remove a template from a schema - mso_schema: + mso_schema_template: host: mso_host username: admin password: SomeSecretPassword @@ -79,7 +79,7 @@ EXAMPLES = r''' delegate_to: localhost - name: Query a template - mso_schema: + mso_schema_template: host: mso_host username: admin password: SomeSecretPassword @@ -91,7 +91,7 @@ EXAMPLES = r''' register: query_result - name: Query all templates - mso_schema: + mso_schema_template: host: mso_host username: admin password: SomeSecretPassword