This file is indexed.

/usr/lib/ruby/vendor_ruby/fog/compute/ecloud/requests/get_operating_system.rb is in ruby-fog-ecloud 0.1.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module Fog
  module Compute
    class Ecloud
      class Real
        basic_request :get_operating_system
      end

      class Mock
        def get_operating_system(uri)
          os_name, compute_pool_id = uri.match(/operatingsystems\/(.*)\/computepools\/(\d+)$/).captures
          compute_pool_id          = compute_pool_id.to_i

          operating_systems = self.data[:operating_systems].values.select{|os| os[:compute_pool_id] == compute_pool_id}
          operating_system = operating_systems.find{|os| os[:short_name] == os_name}

          if operating_system
            response(:body => Fog::Ecloud.slice(operating_system, :id, :compute_pool_id, :short_name))
          else response(:status => 404) # ?
          end
        end
      end
    end
  end
end