9 lines
294 B
Ruby
9 lines
294 B
Ruby
# frozen_string_literal: true
|
|
|
|
Gitlab.ee do
|
|
public_key_file = File.read(Rails.root.join(".license_encryption_key.pub"))
|
|
public_key = OpenSSL::PKey::RSA.new(public_key_file)
|
|
Gitlab::License.encryption_key = public_key
|
|
rescue
|
|
warn "WARNING: No valid license encryption key provided."
|
|
end
|