From f6ae6eb3e0d709404cc6f47b27c047b4dc9538cf Mon Sep 17 00:00:00 2001 From: Nathan Swartz Date: Thu, 8 Aug 2019 07:48:09 -0500 Subject: [PATCH] Remove automatic default group assignment in netapp_e_host module (#60239) --- lib/ansible/modules/storage/netapp/netapp_e_host.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/ansible/modules/storage/netapp/netapp_e_host.py b/lib/ansible/modules/storage/netapp/netapp_e_host.py index 7704e60fbbf..f493fc723e2 100644 --- a/lib/ansible/modules/storage/netapp/netapp_e_host.py +++ b/lib/ansible/modules/storage/netapp/netapp_e_host.py @@ -439,8 +439,6 @@ class Host(object): if self.group: self.post_body['groupId'] = self.group_id() - else: - self.post_body['groupId'] = "0000000000000000000000000000000000000000" self.post_body['hostType'] = dict(index=self.host_type_index)