module Fog::Compute::Brightbox::Shared

Public Instance Methods

default_image() click to toggle source

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!

@return [String, nil]

# File lib/fog/brightbox/compute.rb, line 138
def default_image
  return @default_image_id unless @default_image_id.nil?
  @default_image_id = Fog.credentials[:brightbox_default_image] || select_default_image
end