Sha256: ae281a8877b4aeebd842744eb74ff7fa0cd1421a5271f331a0e42867dc37ee31
Contents?: true
Size: 388 Bytes
Versions: 7
Compression:
Stored size: 388 Bytes
Contents
module VagrantPlugins module Parallels module Action class PruneNFSExports def initialize(app, env) @app = app end def call(env) if env[:host] vms = env[:machine].provider.driver.read_all_names env[:host].nfs_prune(vms.values) end @app.call(env) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems