Renamespace Kernel to Kernel_V1
This commit is contained in:
parent
51be92eeb6
commit
bd1def6b22
|
@ -1,7 +1,7 @@
|
|||
require "vagrant"
|
||||
|
||||
module VagrantPlugins
|
||||
module Kernel
|
||||
module Kernel_V1
|
||||
class NFSConfig < Vagrant::Config::V1::Base
|
||||
attr_accessor :map_uid
|
||||
attr_accessor :map_gid
|
|
@ -1,7 +1,7 @@
|
|||
require "vagrant"
|
||||
|
||||
module VagrantPlugins
|
||||
module Kernel
|
||||
module Kernel_V1
|
||||
class PackageConfig < Vagrant::Config::V1::Base
|
||||
attr_accessor :name
|
||||
end
|
|
@ -1,7 +1,7 @@
|
|||
require "vagrant"
|
||||
|
||||
module VagrantPlugins
|
||||
module Kernel
|
||||
module Kernel_V1
|
||||
class SSHConfig < Vagrant::Config::V1::Base
|
||||
attr_accessor :username
|
||||
attr_accessor :password
|
|
@ -1,7 +1,7 @@
|
|||
require "vagrant"
|
||||
|
||||
module VagrantPlugins
|
||||
module Kernel
|
||||
module Kernel_V1
|
||||
class VagrantConfig < Vagrant::Config::V1::Base
|
||||
attr_accessor :dotfile_name
|
||||
attr_accessor :host
|
|
@ -6,7 +6,7 @@ require File.expand_path("../vm_provisioner", __FILE__)
|
|||
require File.expand_path("../vm_subvm", __FILE__)
|
||||
|
||||
module VagrantPlugins
|
||||
module Kernel
|
||||
module Kernel_V1
|
||||
class VMConfig < Vagrant::Config::V1::Base
|
||||
attr_accessor :name
|
||||
attr_accessor :auto_port_range
|
|
@ -1,7 +1,7 @@
|
|||
require 'log4r'
|
||||
|
||||
module VagrantPlugins
|
||||
module Kernel
|
||||
module Kernel_V1
|
||||
# Represents a single configured provisioner for a VM.
|
||||
class VagrantConfigProvisioner
|
||||
attr_reader :shortcut
|
|
@ -1,7 +1,7 @@
|
|||
require "vagrant/util/stacked_proc_runner"
|
||||
|
||||
module VagrantPlugins
|
||||
module Kernel
|
||||
module Kernel_V1
|
||||
# Represents a single sub-VM in a multi-VM environment.
|
||||
class VagrantConfigSubVM
|
||||
include Vagrant::Util::StackedProcRunner
|
|
@ -1,7 +1,7 @@
|
|||
require "vagrant"
|
||||
|
||||
module VagrantPlugins
|
||||
module Kernel
|
||||
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")
|
Loading…
Reference in New Issue