Sha256: 50a0ecea1132e989618aaf13cd8c881aa3794864a98727d80e9abb7799f49ff3
Contents?: true
Size: 468 Bytes
Versions: 62
Compression:
Stored size: 468 Bytes
Contents
module VagrantPlugins module DockerProvider module Action class InitState def initialize(app, env) @app = app end def call(env) # We set the ID of the machine to "preparing" so that we can use # the data dir without it being deleted with the not_created state. env[:machine].id = nil env[:machine].id = "preparing" @app.call(env) end end end end end
Version data entries
62 entries across 55 versions & 7 rubygems