2015-09-20 16:32:50 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
# license: All rights reserved
|
|
|
|
|
|
|
|
# Verifies if a kernel module is loaded
|
|
|
|
# Usage:
|
|
|
|
# describe kernel_module('bridge') do
|
|
|
|
# it { should be_loaded }
|
|
|
|
# end
|
|
|
|
class KernelModule < Vulcano.resource(1)
|
|
|
|
name 'kernel_module'
|
|
|
|
|
|
|
|
def initialize(modulename = nil)
|
|
|
|
@module = modulename
|
|
|
|
|
|
|
|
# this resource is only supported on Linux
|
|
|
|
return skip_resource 'The `kernel_module` resource is not supported on your OS.' if !%w{ubuntu debian redhat fedora arch}.include? vulcano.os[:family]
|
|
|
|
end
|
|
|
|
|
|
|
|
def loaded?
|
|
|
|
# get list of all modules
|
|
|
|
cmd = vulcano.run_command('lsmod')
|
2015-09-21 11:02:27 +00:00
|
|
|
return false if cmd.exit_status != 0
|
2015-09-20 16:32:50 +00:00
|
|
|
|
|
|
|
# check if module is loaded
|
2015-09-21 11:02:27 +00:00
|
|
|
re = Regexp.new('^'+Regexp.quote(@module)+'\s')
|
|
|
|
found = cmd.stdout.match(re)
|
|
|
|
!found.nil?
|
2015-09-20 16:32:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
|
|
|
"Kernel Module #{@module}"
|
|
|
|
end
|
|
|
|
end
|