mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
small fix for vagrant 1.4(not well tested but start working)
This commit is contained in:
parent
bbe1b22f2c
commit
6e3a9fe411
@ -25,7 +25,9 @@ module VagrantPlugins
|
||||
b2.use CreateNetworks
|
||||
b2.use CreateNetworkInterfaces
|
||||
|
||||
b2.use NFS
|
||||
b2.use SyncedFolderCleanup
|
||||
b2.use SyncedFolders
|
||||
|
||||
b2.use PrepareNFSSettings
|
||||
b2.use ShareFolders
|
||||
b2.use SetHostname
|
||||
@ -59,7 +61,8 @@ module VagrantPlugins
|
||||
# VM is not running or suspended. Start it.. Machine should gain
|
||||
# IP address when comming up, so wait for dhcp lease and store IP
|
||||
# into machines data_dir.
|
||||
b3.use NFS
|
||||
b3.use SyncedFolderCleanup
|
||||
b3.use SyncedFolders
|
||||
b3.use PrepareNFSSettings
|
||||
b3.use ShareFolders
|
||||
|
||||
@ -302,6 +305,8 @@ module VagrantPlugins
|
||||
autoload :WaitTillUp, action_root.join('wait_till_up')
|
||||
autoload :SSHRun, 'vagrant/action/builtin/ssh_run'
|
||||
autoload :HandleBoxUrl, 'vagrant/action/builtin/handle_box_url'
|
||||
autoload :SyncedFolders, 'vagrant/action/builtin/synced_folders'
|
||||
autoload :SyncedFolderCleanup, 'vagrant/action/builtin/synced_folder_cleanup'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -1,4 +1,4 @@
|
||||
require "pathname"
|
||||
require 'pathname'
|
||||
|
||||
require "log4r"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user