plugin_sysctl: fixed to get the tunings applied
This commit is contained in:
parent
c6f7c28899
commit
e90f31ae04
1 changed files with 1 additions and 1 deletions
|
|
@ -174,7 +174,7 @@ class Plugin(object):
|
|||
|
||||
def _merge_options(self, options):
|
||||
for key in options:
|
||||
if key in self._options:
|
||||
if key in self._options or self.__class__.__name__ == "SysctlPlugin":
|
||||
self._options[key] = options[key]
|
||||
else:
|
||||
log.warn("Unknown option '%s' for plugin '%s'." % (key, self.__class__.__name__))
|
||||
|
|
|
|||
Loading…
Reference in a new issue