summaryrefslogtreecommitdiffstats
path: root/plugins/openscap_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/openscap_plugin.py')
-rw-r--r--plugins/openscap_plugin.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/plugins/openscap_plugin.py b/plugins/openscap_plugin.py
index 82efa30..34f9ea5 100644
--- a/plugins/openscap_plugin.py
+++ b/plugins/openscap_plugin.py
@@ -86,16 +86,19 @@ class OpenSCAPPlugin(Plugin):
tailor_items = self._policy.get_tailor_items()
preproces_tailor_items = lambda i: (i["id"],
- i["titles"][i["lang"]] or "",
- i["selected"][1] or "",
- i["descs"][i["lang"]] or "",
- i["match"] or ".*",
- "Error setting the value, read the following description and try again:\n\n"+i["descs"][i["lang"]])
+ i["titles"][i["lang"]] or "",
+ i["selected"][1] or "",
+ i["descs"][i["lang"]] or "",
+ i["match"] or ".*",
+ "Error setting the value, read the following description and try again:\n\n"+i["descs"][i["lang"]],
+ [i["selected"][1] or "", "test"]
+ )
tailor_items = map(preproces_tailor_items, tailor_items)
s = self._reporting.config_question_wait("Setup OpenScap policy",
"Set preferred values and press OK",
- tailor_items, origin = self,
+ tailor_items, mode = 2,
+ origin = self,
level = PLUGIN)
preprocess_s = lambda v: {"id": v[0], "value": v[1]}