20 lines
639 B
Ruby
20 lines
639 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Gitlab.ee do
|
||
|
begin
|
||
|
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
|
||
|
|
||
|
# Needed to run migration
|
||
|
if ActiveRecord::Base.connected? && ActiveRecord::Base.connection.data_source_exists?('licenses')
|
||
|
message = LicenseHelper.license_message(signed_in: true, is_admin: true, in_html: false)
|
||
|
if ::License.block_changes? && message.present?
|
||
|
warn "WARNING: #{message}"
|
||
|
end
|
||
|
end
|
||
|
end
|