Module: Fog::Compute::Brightbox::Shared
Instance Method Summary collapse
-
#default_image ⇒ String?
Returns an identifier for the default image for use.
Instance Method Details
#default_image ⇒ String?
Returns an identifier for the default image for use
Currently tries to find the latest version Ubuntu LTS (i686) widening up to the latest, official version of Ubuntu available.
Highly recommended that you actually select the image you want to run on your servers yourself!
114 115 116 117 |
# File 'lib/fog/brightbox/compute.rb', line 114 def default_image return @default_image_id unless @default_image_id.nil? @default_image_id = Fog.credentials[:brightbox_default_image] || select_default_image end |