From 134ebe84058fb156276a0971e2296d397ff59f00 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 3 Jun 2010 00:27:48 -0700 Subject: [PATCH] Added new method to base system. Not implemented for linux yet. --- lib/vagrant/systems/base.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/vagrant/systems/base.rb b/lib/vagrant/systems/base.rb index fc7c6a027..b01baa0b8 100644 --- a/lib/vagrant/systems/base.rb +++ b/lib/vagrant/systems/base.rb @@ -54,6 +54,13 @@ module Vagrant # @param [String] guestpath The path on the machine which the user # wants the folder mounted. def mount_shared_folder(ssh, name, guestpath); end + + # Setup the system by adding a new host only network. This + # method should configure and bring up the interface for the + # given options. + # + # @param [Hash] net_options The options for the network. + def enable_host_only_network(net_options); end end end end