Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fips.rb « support « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0fed39e81096460236c4f29876b1157958b955bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# rubocop: disable Naming/FileName
# frozen_string_literal: true

module QA
  module Support
    class FIPS
      def self.enabled?
        %w[1 true yes].include?(ENV['FIPS'].to_s)
      end
    end
  end
end

# rubocop: enable Naming/FileName