1
0
Fork 0

Merge pull request #562 from gsauthof/modules-equal-value

Allow equal characters in kernel module parameter value
This commit is contained in:
Jaroslav Škarvada 2024-05-16 15:15:08 +02:00 committed by GitHub
commit 362f098f51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -124,7 +124,7 @@ class ModulesPlugin(base.Plugin):
log.info(consts.STR_VERIFY_PROFILE_OK % "module '%s' is loaded" % module)
l = r.split(v)
for item in l:
arg = item.split("=")
arg = item.split("=", 1)
if len(arg) != 2:
log.warn("unrecognized module option for module '%s': %s" % (module, item))
else: