Sha256: c21c8392250f74f3892d95a248612a5bca74f6c5c87d931334c63ab4933b18ae

Contents?: true

Size: 892 Bytes

Versions: 15

Compression:

Stored size: 892 Bytes

Contents

require 'vagrant/util/template_renderer'

module VagrantPlugins
  module Parallels
    module Action
      class PackageVagrantfile
        # For TemplateRenderer
        include Vagrant::Util

        def initialize(app, env)
          @app = app
        end

        def call(env)
          @env = env
          create_vagrantfile
          @app.call(env)
        end

        # This method creates the auto-generated Vagrantfile at the root of the
        # box. This Vagrantfile contains the MAC address so that the user doesn't
        # have to worry about it.
        def create_vagrantfile
          File.open(File.join(@env["export.temp_dir"], "Vagrantfile"), "w") do |f|
            f.write(TemplateRenderer.render("package_Vagrantfile", {
              base_mac: @env[:machine].provider.driver.read_mac_address
            }))
          end
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
vagrant-parallels-2.4.5 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.4.4 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.4.2 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.4.1 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.4.0 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.3.1 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.3.0 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.2.6 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.2.5 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.2.4 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.2.3 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.2.2 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.2.1 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.2.0 lib/vagrant-parallels/action/package_vagrantfile.rb
vagrant-parallels-2.1.0 lib/vagrant-parallels/action/package_vagrantfile.rb