Added new method to base system. Not implemented for linux yet.
This commit is contained in:
parent
d16efa1a34
commit
134ebe8405
|
@ -54,6 +54,13 @@ module Vagrant
|
||||||
# @param [String] guestpath The path on the machine which the user
|
# @param [String] guestpath The path on the machine which the user
|
||||||
# wants the folder mounted.
|
# wants the folder mounted.
|
||||||
def mount_shared_folder(ssh, name, guestpath); end
|
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
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue