lib/vagrant-vcenter/action.rb in vagrant-vcenter-0.1.1 vs lib/vagrant-vcenter/action.rb in vagrant-vcenter-0.2.0

- old
+ new

@@ -12,11 +12,11 @@ # a bootup (i.e. not saved). def self.action_boot Vagrant::Action::Builder.new.tap do |b| b.use PowerOn b.use Provision - b.use SyncFolders + b.use SyncedFolders end end def self.action_reload Vagrant::Action::Builder.new.tap do |b| @@ -112,11 +112,11 @@ unless env[:result] b2.use MessageNotCreated next end b2.use Provision - b2.use SyncFolders + b2.use SyncedFolders end end end # This action is called to read the SSH info of the machine. The @@ -222,10 +222,8 @@ action_root.join('read_state') autoload :Resume, action_root.join('resume') autoload :Suspend, action_root.join('suspend') - autoload :SyncFolders, - action_root.join('sync_folders') end end end