Sha256: b0e5f5cbfa0e970922e94a5a56d5b9b2d836508a9efc692cd64d0b32daa9c55d
Contents?: true
Size: 592 Bytes
Versions: 19
Compression:
Stored size: 592 Bytes
Contents
module Vagrant class Action module VM class Customize def initialize(app, env) @app = app end def call(env) if !env["config"].vm.proc_stack.empty? # Create the proc which runs all of our procs proc = lambda do |vm| env.ui.info I18n.t("vagrant.actions.vm.customize.running") env["config"].vm.run_procs!(vm) end # Add it to modify sequence env["vm.modify"].call(proc) end @app.call(env) end end end end end
Version data entries
19 entries across 19 versions & 3 rubygems