2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# File 'app/models/setting/patching.rb', line 2
def self.default_settings
http_proxy_select = [{
name: _('Http Proxies'),
class: 'HttpProxy',
scope: 'all',
value_method: 'name',
text_method: 'name_and_url',
}]
time_zone_select = [{
name: _('Time Zones'),
class: 'ActiveSupport::TimeZone',
scope: 'all',
value_method: 'name',
text_method: 'name',
}]
[
self.set('host_max_wait_for_up', N_("Maximum seconds to wait for a host after patching restart."),
600, N_("Max wait for host up")),
self.set('host_patch_timeout', N_("Maximum seconds for a patching invocation to run before timing out"),
nil, N_('Patch Timeout')),
self.set('patch_schedule_time_zone', N_('Time zone used to base patch window scheduling off of.'),
'UTC', N_('Patch Schedule Time Zone'), nil,
collection: proc { time_zone_select }),
self.set('ticket_api_host', N_('Host used for change management tickets'),
nil, N_('Ticket API host')),
self.set('ticket_api_proxy', N_('HTTP Proxy to access ticket API host'),
nil, N_('Ticket API HTTP proxy'), nil,
collection: proc { http_proxy_select }, include_blank: N_('no proxy')),
self.set('ticket_api_user', N_('User with access to ticket API'),
nil, N_('Ticket API user')),
self.set('ticket_api_password', N_('Password for ticket API user'),
nil, N_('Ticket API password'), nil, { encrypted: true }),
self.set('ticket_api_path', N_('Ticket API path for REST/CRUD operations'),
'/api/now/table/change_request', N_('Ticket API path')),
self.set('ticket_web_ui_path', N_('Path for opening a ticket in the web UI'),
'/change_request.do?sys_id=:id', N_('Ticket Web UI path')),
self.set('ticket_label_field', N_('Name of the field used for the ticket label'),
'number', N_('Ticket label field')),
self.set('ticket_id_field', N_('Name of the field used for the ticket id'),
'sys_id', N_('Ticket ID field')),
self.set('skip_broken_patches', N_('Skip broken dependencies during patching'), true, N_('Skip broken patches'))
]
end
|