Files
SecGen/lib/objects/base_box.rb

17 lines
306 B
Ruby

class Basebox
# Name of the basebox
attr_accessor :name
# Operating system on the basebox
attr_accessor :os
# Distro running on the basebox
attr_accessor :distro
# Selected vagrantbase of the system
attr_accessor :vagrantbase
# Url link to the puppet basebox
attr_accessor :url
end