Class: VagrantPlugins::Openstack::Action::NoSyncFolders

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-openstack-provider/action/sync_folders.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, _env) ⇒ NoSyncFolders

Returns a new instance of NoSyncFolders.



26
27
28
# File 'lib/vagrant-openstack-provider/action/sync_folders.rb', line 26

def initialize(app, _env)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



30
31
32
33
# File 'lib/vagrant-openstack-provider/action/sync_folders.rb', line 30

def call(env)
  @app.call(env)
  env[:ui].info('Sync folders are disabled')
end