17 lines
318 B
Ruby
17 lines
318 B
Ruby
|
require "vagrant/util/stacked_proc_runner"
|
||
|
|
||
|
module VagrantPlugins
|
||
|
module Kernel
|
||
|
# Represents a single sub-VM in a multi-VM environment.
|
||
|
class VagrantConfigSubVM
|
||
|
include Vagrant::Util::StackedProcRunner
|
||
|
|
||
|
attr_reader :options
|
||
|
|
||
|
def initialize
|
||
|
@options = {}
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|