Sha256: 1d1bf2502f577d9f6359bcb967b1ad25742fca6396269cfcfca83eb0006e8d97

Contents?: true

Size: 1.23 KB

Versions: 19

Compression:

Stored size: 1.23 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("nfs") do
        require File.expand_path("../config/nfs", __FILE__)
        NFSConfig
      end

      config("package") do
        require File.expand_path("../config/package", __FILE__)
        PackageConfig
      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

19 entries across 19 versions & 6 rubygems

Version Path
tamtam-vagrant-reload-1.1.3 vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/plugin.rb
tamtam-vagrant-reload-1.1.2 vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/plugin.rb
tamtam-vagrant-reload-1.1.1 vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/plugin.rb
tamtam-vagrant-reload-1.1 vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/plugin.rb
tnargav-1.3.6 plugins/kernel_v2/plugin.rb
tnargav-1.3.3 plugins/kernel_v2/plugin.rb
vagrant-shell-0.2.9 demo/templates/vendor/bundle/ruby/1.9.1/gems/tnargav-1.2.2/plugins/kernel_v2/plugin.rb
tnargav-1.2.3 plugins/kernel_v2/plugin.rb
vagrant-shell-0.2.8 demo/templates/vendor/bundle/ruby/1.9.1/gems/tnargav-1.2.2/plugins/kernel_v2/plugin.rb
vagrant-shell-0.2.6 vendor/bundle/gems/tnargav-1.2.2/plugins/kernel_v2/plugin.rb
vagrant-shell-0.2.5 vendor/bundle/gems/tnargav-1.2.2/plugins/kernel_v2/plugin.rb
tnargav-1.2.2 plugins/kernel_v2/plugin.rb
vagrantup-1.1.3 plugins/kernel_v2/plugin.rb
vagrantup-1.1.2 plugins/kernel_v2/plugin.rb
vagrantup-1.1.1 plugins/kernel_v2/plugin.rb
vagrantup-1.1.0 plugins/kernel_v2/plugin.rb
vagrantup-1.1.4 plugins/kernel_v2/plugin.rb
vagrant-actionio-0.0.9 vendor/bundle/bundler/gems/vagrant-c74251a1d9c0/plugins/kernel_v2/plugin.rb
vagrant-lxc-0.0.1 vendor/vagrant/plugins/kernel_v2/plugin.rb