mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-22 03:38:01 +00:00
17 lines
306 B
Ruby
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 |