Sha256: 275fd2fe007c67fef1c8052702d3dddc3a7a3aec63896df1e47353147a999095
Contents?: true
Size: 643 Bytes
Versions: 1
Compression:
Stored size: 643 Bytes
Contents
# frozen_string_literal: true require 'net/http' require 'vagrant-local/util/subprocess' require 'vagrant/box_metadata' require 'vagrant/util/downloader' require 'vagrant/util/platform' require 'vagrant/util/safe_chdir' require 'vagrant/util/subprocess' module VagrantPlugins module ProviderLocal module Action # This will import the instance boot image from the cloud, cache or file class Import def initialize(app, _env) @logger = Log4r::Logger.new('vagrant_local::action::import') @app = app end def call(env) @app.call(env) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-local-0.0.1 | lib/vagrant-local/action/import.rb |