Fixes #4438 typo missing sending networks param for rhel guest network

This commit is contained in:
Andy Thompson 2014-09-03 16:07:55 +01:00
parent 4c7eeb7595
commit fb1d4adf87
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