Sha256: 27e7759bae1adaef8ef98646a99cc7f92b1c8fc2d1abc9ed32bb9d65d95a6349

Contents?: true

Size: 921 Bytes

Versions: 28

Compression:

Stored size: 921 Bytes

Contents

require "fileutils"

module VagrantPlugins
  module ProviderVirtualBox
    module Action
      class Export
        def initialize(app, env)
          @app = app
        end

        def call(env)
          @env = env

          raise Vagrant::Errors::VMPowerOffToPackage if \
            @env[:machine].state.id != :poweroff

          export

          @app.call(env)
        end

        def export
          @env[:ui].info I18n.t("vagrant.actions.vm.export.exporting")
          @env[:machine].provider.driver.export(ovf_path) do |progress|
            @env[:ui].clear_line
            @env[:ui].report_progress(progress.percent, 100, false)
          end

          # Clear the line a final time so the next data can appear
          # alone on the line.
          @env[:ui].clear_line
        end

        def ovf_path
          File.join(@env["export.temp_dir"], "box.ovf")
        end
      end
    end
  end
end

Version data entries

28 entries across 25 versions & 5 rubygems

Version Path
vagrant-unbundled-2.0.2.0 plugins/providers/virtualbox/action/export.rb
vagrant-unbundled-2.0.1.0 plugins/providers/virtualbox/action/export.rb
vagrant-aws-mkubenka-0.7.2.pre.22 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-f3fdbf414272/plugins/providers/virtualbox/action/export.rb
vagrant-aws-mkubenka-0.7.2.pre.16 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-1ee58c40e3f5/plugins/providers/virtualbox/action/export.rb
vagrant-unbundled-2.0.0.1 plugins/providers/virtualbox/action/export.rb
vagrant-unbundled-1.9.8.1 plugins/providers/virtualbox/action/export.rb
vagrant-unbundled-1.9.7.1 plugins/providers/virtualbox/action/export.rb
vagrant-aws-mkubenka-0.7.2.pre.14 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/export.rb
vagrant-aws-mkubenka-0.7.2.pre.11 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/export.rb
vagrant-aws-mkubenka-0.7.2.pre.10 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/export.rb
vagrant-aws-mkubenka-0.7.2.pre.9 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/export.rb
vagrant-unbundled-1.9.5.1 plugins/providers/virtualbox/action/export.rb
vagrant-unbundled-1.9.1.1 plugins/providers/virtualbox/action/export.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/providers/virtualbox/action/export.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/providers/virtualbox/action/export.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/providers/virtualbox/action/export.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/providers/virtualbox/action/export.rb
vagrant-unbundled-1.8.5.2 plugins/providers/virtualbox/action/export.rb
vagrant-unbundled-1.8.5.1 plugins/providers/virtualbox/action/export.rb
vagrant-unbundled-1.8.4.2 plugins/providers/virtualbox/action/export.rb