class Specinfra::Command::Redhat::Base::SelinuxModule

Public Class Methods

create(os_info=nil) click to toggle source
# File lib/specinfra/command/redhat/base/selinux_module.rb, line 3
def create(os_info=nil)
  if (os_info || os)[:release].to_i < 8
    self
  else
    Specinfra::Command::Redhat::V8::SelinuxModule
  end
end