From 65c4e388ebc1830c06ffb1516713ab148a3fe712 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. --- system/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/setup b/system/setup index b3d6f5e61f4..5ae5ece8bad 100644 --- a/system/setup +++ b/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