summaryrefslogtreecommitdiff
path: root/lib/ohai/plugins/network.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ohai/plugins/network.rb')
-rw-r--r--lib/ohai/plugins/network.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ohai/plugins/network.rb b/lib/ohai/plugins/network.rb
index 9b9811dc..2f5925e1 100644
--- a/lib/ohai/plugins/network.rb
+++ b/lib/ohai/plugins/network.rb
@@ -135,9 +135,9 @@ Ohai.plugin(:NetworkAddresses) do
results = {}
network Mash.new unless network
- network[:interfaces] = Mash.new unless network[:interfaces]
+ network[:interfaces] ||= Mash.new
counters Mash.new unless counters
- counters[:network] = Mash.new unless counters[:network]
+ counters[:network] ||= Mash.new
# inet family is processed before inet6 to give ipv4 precedence
Ohai::Mixin::NetworkConstants::FAMILIES.keys.sort.each do |family|