2012-04-17 22:12:27 -07:00

14 lines
213 B
Ruby

require "vagrant"
module VagrantPlugins
module Kernel
class PackageConfig < Vagrant::Config::V1::Base
attr_accessor :name
def initialize
@name = UNSET_VALUE
end
end
end
end