gitlab-ce/lib/gitlab/database/sos.rb

19 lines
326 B
Ruby

# frozen_string_literal: true
# WIP
module Gitlab
module Database
module Sos
TASKS = [
Sos::ShowAllSettings
].freeze
def self.run(output_file)
Output.writing(output_file, mode: :directory) do |output|
TASKS.each { |t| t.run(output) }
end
end
end
end
end