18 lines
295 B
Ruby
18 lines
295 B
Ruby
module Vagrant
|
|
class Config
|
|
class VMConfig < Base
|
|
# Represents a single sub-VM in a multi-VM environment.
|
|
class SubVM
|
|
include Util::StackedProcRunner
|
|
|
|
attr_reader :options
|
|
|
|
def initialize
|
|
@options = {}
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|