class ForemanKernelCare::Engine

Dependencies related with the remote execution plugin

Public Class Methods

register_rex_feature() click to toggle source
# File lib/foreman_kernel_care/remote_execution.rb, line 8
def self.register_rex_feature
  RemoteExecutionFeature.register(
    :update_kernel,
    N_('Run Update kernel'),
    :description => N_('Runs Update kernel')
  )

  RemoteExecutionFeature.register(
    :kernel_version,
    N_('Get patched kernel version'),
    :description => N_('Get patched kernel version')
  )
end