Sha256: fa68f758d2d0e922a4d9981097781484969c12d79756f3640b6960faf6ccdc5e

Contents?: true

Size: 1.24 KB

Versions: 32

Compression:

Stored size: 1.24 KB

Contents

require "vagrant"

module VagrantPlugins
  module Kernel_V2
    # This is the "kernel" of Vagrant and contains the configuration classes
    # that make up the core of Vagrant for V2.
    class Plugin < Vagrant.plugin("2")
      name "kernel"
      description <<-DESC
      The kernel of Vagrant. This plugin contains required items for even
      basic functionality of Vagrant version 2.
      DESC

      # Core configuration keys provided by the kernel. Note that unlike
      # "kernel_v1", none of these configuration classes are upgradable.
      # This is by design, since we can't be sure if they're upgradable
      # until another version is available.
      config("ssh") do
        require File.expand_path("../config/ssh", __FILE__)
        SSHConfig
      end

      config("package") do
        require File.expand_path("../config/package", __FILE__)
        PackageConfig
      end

      config("push") do
        require File.expand_path("../config/push", __FILE__)
        PushConfig
      end

      config("vagrant") do
        require File.expand_path("../config/vagrant", __FILE__)
        VagrantConfig
      end

      config("vm") do
        require File.expand_path("../config/vm", __FILE__)
        VMConfig
      end
    end
  end
end

Version data entries

32 entries across 29 versions & 5 rubygems

Version Path
vagrant-unbundled-2.0.4.0 plugins/kernel_v2/plugin.rb
vagrant-unbundled-2.0.3.0 plugins/kernel_v2/plugin.rb
vagrant-aws-detiber-0.7.2.pre.4 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/kernel_v2/plugin.rb
vagrant-aws-detiber-0.7.2.pre.3 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/kernel_v2/plugin.rb
vagrant-aws-detiber-0.7.2.pre.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/kernel_v2/plugin.rb
vagrant-unbundled-2.0.2.0 plugins/kernel_v2/plugin.rb
vagrant-unbundled-2.0.1.0 plugins/kernel_v2/plugin.rb
vagrant-aws-mkubenka-0.7.2.pre.22 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-f3fdbf414272/plugins/kernel_v2/plugin.rb
vagrant-aws-mkubenka-0.7.2.pre.16 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-1ee58c40e3f5/plugins/kernel_v2/plugin.rb
vagrant-unbundled-2.0.0.1 plugins/kernel_v2/plugin.rb
vagrant-unbundled-1.9.8.1 plugins/kernel_v2/plugin.rb
vagrant-unbundled-1.9.7.1 plugins/kernel_v2/plugin.rb
vagrant-aws-mkubenka-0.7.2.pre.14 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v2/plugin.rb
vagrant-aws-mkubenka-0.7.2.pre.11 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v2/plugin.rb
vagrant-aws-mkubenka-0.7.2.pre.10 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v2/plugin.rb
vagrant-aws-mkubenka-0.7.2.pre.9 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v2/plugin.rb
vagrant-unbundled-1.9.5.1 plugins/kernel_v2/plugin.rb
vagrant-unbundled-1.9.1.1 plugins/kernel_v2/plugin.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/kernel_v2/plugin.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/kernel_v2/plugin.rb