From 6b09e996642bbfdba1bde7f2e3f10242d55e3dd9 Mon Sep 17 00:00:00 2001 From: Rene Bakkum Date: Wed, 12 Dec 2018 21:15:00 +0100 Subject: [PATCH] Fix example with spacing error in hostname (#49812) fix na_ontap_command module examples --- lib/ansible/modules/storage/netapp/na_ontap_command.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/storage/netapp/na_ontap_command.py b/lib/ansible/modules/storage/netapp/na_ontap_command.py index 8d388242484..8ddf2528570 100644 --- a/lib/ansible/modules/storage/netapp/na_ontap_command.py +++ b/lib/ansible/modules/storage/netapp/na_ontap_command.py @@ -28,14 +28,14 @@ options: EXAMPLES = """ - name: run ontap cli command na_ontap_command: - hostname: "{{ hostname }} " + hostname: "{{ hostname }}" username: "{{ admin username }}" password: "{{ admin password }}" command: ['version'] - name: run ontap cli command na_ontap_command: - hostname: "{{ hostname }} " + hostname: "{{ hostname }}" username: "{{ admin username }}" password: "{{ admin password }}" command: ['network', 'interface', 'show']