Commit 8131feaa by Matt Jeffery Committed by Matt Jeffery

Normalise the module name when comparing against the module names in /proc/modules.

parent 125e9d47
...@@ -60,8 +60,9 @@ def main(): ...@@ -60,8 +60,9 @@ def main():
try: try:
modules = open('/proc/modules') modules = open('/proc/modules')
present = False present = False
module_name = args['name'].replace('-', '_') + ' '
for line in modules: for line in modules:
if line.startswith(args['name'] + ' '): if line.startswith(module_name):
present = True present = True
break break
modules.close() modules.close()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment