Merge pull request #64 from sciurus/network_activation

Autostart and activate networks that are not already autostarted or activated
This commit is contained in:
Dmitry Vasilets 2013-09-27 08:32:46 -07:00
commit 672cb649ce

View File

@ -76,8 +76,8 @@ module VagrantPlugins
end end
end end
autostart_network if @interface_network[:autostart].nil? autostart_network if !@interface_network[:autostart]
activate_network if @interface_network[:active].nil? activate_network if !@interface_network[:active]
end end
@app.call(env) @app.call(env)