2019-07-08 21:06:24 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-08 15:46:34 -04:00
|
|
|
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
|
2019-07-16 23:51:22 -04:00
|
|
|
if ActiveRecord::Base.connected? && ActiveRecord::Base.connection.table_exists?('licenses')
|
2019-07-08 15:46:34 -04:00
|
|
|
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
|