Sha256: a564dd98f5641a2a5f5ca9b49c136092e6f7c7bcff2c313a0a7d4d51332d2e0f

Contents?: true

Size: 1.25 KB

Versions: 82

Compression:

Stored size: 1.25 KB

Contents

require "vagrant"

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

      # Core configuration keys provided by the kernel. Note that all
      # the kernel configuration classes are marked as _upgrade safe_ (the
      # true 2nd param). This means that these can be loaded in ANY version
      # of the core of Vagrant.
      config("ssh", true) do
        require File.expand_path("../config/ssh", __FILE__)
        SSHConfig
      end

      config("nfs", true) do
        require File.expand_path("../config/nfs", __FILE__)
        NFSConfig
      end

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

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

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

Version data entries

82 entries across 75 versions & 13 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/kernel_v1/plugin.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.3.3.0 plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.3.2.0 plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.19.0 plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.18.0 plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.16.0 plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.14.0 plugins/kernel_v1/plugin.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.10.0 plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.9.0 plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.8.0 plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.7.0 plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.6.2 plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.6.1 plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.6.0 plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.5.0 plugins/kernel_v1/plugin.rb
tamtam-vagrant-reload-1.1.3 vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.4.0 plugins/kernel_v1/plugin.rb
vagrant-unbundled-2.2.3.0 plugins/kernel_v1/plugin.rb