# File lib/aeolus_image/model/warehouse_model.rb, line 137
        def read_file(path)
          begin
            full_path = File.expand_path(path)
            if is_file?(path)
              File.read(full_path)
            else
              return nil
            end
          rescue
            nil
          end
        end