Project

General

Profile

Download (944 Bytes) Statistics
| Branch: | Tag: | Revision:
class Setting::Abrt < ::Setting

def self.load_defaults
return unless super

Setting.transaction do
[
self.set('abrt_server_url', N_('URL of the ABRT server to send reports to'), 'https://localhost/faf'),
self.set('abrt_server_verify_ssl', N_('Verify ABRT server certificate?'), true),
self.set('abrt_server_ssl_certificate', N_('SSL certificate path that Foreman would use to communicate with ABRT server'), ''),
self.set('abrt_server_ssl_priv_key', N_('SSL private key path that Foreman would use to communicate with ABRT server'), ''),
self.set('abrt_server_ssl_ca_file', N_('SSL CA file that Foreman will use to communicate with ABRT server'), ''),
self.set('abrt_automatically_forward', N_('Automatically send every report to an ABRT server for analysis?'), false),
].compact.each { |s| self.create s.update(:category => 'Setting::Abrt') }
end

true

end
end
    (1-1/1)