class Serverspec::Type::SelinuxModule

Public Instance Methods

enabled?() click to toggle source
# File lib/serverspec/type/selinux_module.rb, line 3
def enabled?
  @runner.check_selinux_module_is_enabled(@name)
end
installed?(version = nil) click to toggle source
# File lib/serverspec/type/selinux_module.rb, line 7
def installed?(version = nil)
  @runner.check_selinux_module_is_installed(@name, version)
end
to_s() click to toggle source
# File lib/serverspec/type/selinux_module.rb, line 11
def to_s
  %(SELinux module "#{@name}")
end