vagrant-lxc-ng/lib/vagrant-lxc/config.rb
2013-03-03 04:37:07 -03:00

15 lines
293 B
Ruby

module Vagrant
module LXC
class Config < Vagrant.plugin("2", :config)
# An array of options to be passed to lxc-start when booting the machine.
#
# @return [Array]
attr_reader :start_opts
def initialize
@start_opts = []
end
end
end
end