Method: Beaker::Options::OptionsHash#get_type
- Defined in:
- lib/beaker/options/options_hash.rb
#get_type ⇒ Symbol
Determine the puppet type of the ObjectHash
Default is FOSS
30 31 32 33 34 35 36 37 38 39 |
# File 'lib/beaker/options/options_hash.rb', line 30 def get_type case self[:type] when /pe/ :pe when /foss/ :foss else :foss end end |