From fb1d4adf8756a925da41b564c1b728614220d296 Mon Sep 17 00:00:00 2001 From: Andy Thompson Date: Wed, 3 Sep 2014 16:07:55 +0100 Subject: [PATCH] Fixes #4438 typo missing sending networks param for rhel guest network --- plugins/guests/redhat/cap/configure_networks.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/guests/redhat/cap/configure_networks.rb b/plugins/guests/redhat/cap/configure_networks.rb index a9e6e03d1..b9c0dbe4f 100644 --- a/plugins/guests/redhat/cap/configure_networks.rb +++ b/plugins/guests/redhat/cap/configure_networks.rb @@ -14,9 +14,9 @@ module VagrantPlugins def self.configure_networks(machine, networks) case machine.guest.capability("flavor") when :rhel_7 - configure_networks_rhel7(machine) + configure_networks_rhel7(machine, networks) else - configure_networks_default(machine) + configure_networks_default(machine, networks) end end