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