From c8db3c2db9a634e3e5811f293b07976ef6cfebc2 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Wed, 12 Mar 2014 09:23:13 -0400 Subject: [PATCH] Revert "Fix issue#6430 by instantiating Network() with expected arguments" This reverts commit 2a723e908eb3eefe05f4319a0fa7ec0d12dd31e2. --- library/system/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/system/setup b/library/system/setup index b3d6f5e61f4..5ae5ece8bad 100644 --- a/library/system/setup +++ b/library/system/setup @@ -2297,7 +2297,7 @@ def ansible_facts(module): facts = {} facts.update(Facts().populate()) facts.update(Hardware().populate()) - facts.update(Network().populate()) + facts.update(Network(module).populate()) facts.update(Virtual().populate()) return facts