Class: VagrantPlugins::ProviderLibvirt::Action::PruneNFSExports
- Inherits:
-
Object
- Object
- VagrantPlugins::ProviderLibvirt::Action::PruneNFSExports
- Includes:
- Util::Nfs
- Defined in:
- lib/vagrant-libvirt/action/prune_nfs_exports.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, _env) ⇒ PruneNFSExports
constructor
A new instance of PruneNFSExports.
Methods included from Util::Nfs
Constructor Details
#initialize(app, _env) ⇒ PruneNFSExports
Returns a new instance of PruneNFSExports.
12 13 14 15 |
# File 'lib/vagrant-libvirt/action/prune_nfs_exports.rb', line 12 def initialize(app, _env) @logger = Log4r::Logger.new('vagrant_libvirt::action::prune_nfs_exports') @app = app end |
Instance Method Details
#call(env) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/vagrant-libvirt/action/prune_nfs_exports.rb', line 17 def call(env) @machine = env[:machine] if using_nfs? @logger.info('Using NFS, prunning NFS settings from host') if env[:host] uuid = env[:machine].id # get all uuids uuids = env[:machine].provider.driver.connection.servers.all.map(&:id) # not exiisted in array will removed from nfs uuids.delete(uuid) env[:host].capability( :nfs_prune, env[:machine].ui, uuids ) end end @app.call(env) end |