19 lines
546 B
Ruby
19 lines
546 B
Ruby
|
class MaintenanceCheckmkWordingsOnSettings < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
|
||
|
# return if it's a new setup
|
||
|
return if !Setting.find_by(name: 'system_init_done')
|
||
|
|
||
|
Setting.find_by(name: 'check_mk_integration').update!(
|
||
|
title: 'Checkmk integration',
|
||
|
description: 'Defines if Checkmk (https://checkmk.com/) is enabled or not.',
|
||
|
)
|
||
|
|
||
|
Setting.find_by(name: 'check_mk_token').update!(
|
||
|
title: 'Checkmk token',
|
||
|
description: 'Defines the Checkmk token for allowing updates.',
|
||
|
)
|
||
|
|
||
|
end
|
||
|
end
|