Class: Serverspec::Type::SelinuxModule
- Inherits:
-
Base
- Object
- Base
- Serverspec::Type::SelinuxModule
show all
- Defined in:
- lib/serverspec/type/selinux_module.rb
Instance Method Summary
collapse
Methods inherited from Base
#initialize, #to_ary, #to_s
Instance Method Details
#enabled? ⇒ Boolean
3
4
5
|
# File 'lib/serverspec/type/selinux_module.rb', line 3
def enabled?
@runner.check_selinux_module_is_enabled(@name)
end
|
#installed?(name, version = nil) ⇒ Boolean
7
8
9
|
# File 'lib/serverspec/type/selinux_module.rb', line 7
def installed?(name, version=nil)
@runner.check_selinux_module_is_installed(@name, version)
end
|