File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 11__author__ = 'desultory'
2- __version__ = '2.5.7 '
2+ __version__ = '2.5.8 '
33
44from zenlib .util import contains
55
@@ -97,6 +97,10 @@ def _validate_cryptsetup_config(self, mapped_name: str) -> None:
9797
9898def _process_cryptsetup_multi (self , mapped_name : str , config : dict ) -> None :
9999 """ Processes the cryptsetup configuration """
100+ for parameter in config :
101+ if parameter not in CRYPTSETUP_PARAMETERS :
102+ self .logger .error ("[%s] Unknown parameter: %s" % (mapped_name , parameter ))
103+
100104 config = _merge_cryptsetup (self , mapped_name , config ) # Merge the config with the existing configuration
101105 self .logger .debug ("[%s] Processing cryptsetup configuration: %s" % (mapped_name , config ))
102106 # Check if the key type is defined in the configuration, otherwise use the default, check if it's valid
You can’t perform that action at this time.
0 commit comments