Merge pull request #4446 from andytson/feature/rhel-networks-fix

guests/redhat: Fixes #4438 typo missing sending networks param for rhel guest network
This commit is contained in:
Mitchell Hashimoto 2014-09-03 09:13:22 -07:00
commit 92b83eaae3
1 changed files with 2 additions and 2 deletions

View File

@ -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