2013-02-28 00:20:54 -03:00
|
|
|
module Vagrant
|
|
|
|
module LXC
|
|
|
|
class Config < Vagrant.plugin("2", :config)
|
2013-03-03 04:37:07 -03:00
|
|
|
# An array of options to be passed to lxc-start when booting the machine.
|
|
|
|
#
|
|
|
|
# @return [Array]
|
|
|
|
attr_reader :start_opts
|
|
|
|
|
|
|
|
def initialize
|
2013-03-29 12:24:37 -03:00
|
|
|
@start_opts = []
|
2013-03-03 04:37:07 -03:00
|
|
|
end
|
2013-02-28 00:20:54 -03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|