remove test plugin
This commit is contained in:
parent
76a9a4108c
commit
895408042a
1 changed files with 0 additions and 19 deletions
|
|
@ -1,19 +0,0 @@
|
|||
import tuned.monitors
|
||||
|
||||
class TestPlugin(tuned.plugins.Plugin):
|
||||
def __init__(self, devices, options):
|
||||
"""
|
||||
"""
|
||||
super(self.__class__, self).__init__(devices, options)
|
||||
|
||||
self._monitors = [
|
||||
tuned.monitors.get_repository().create("load", None),
|
||||
tuned.monitors.get_repository().create("disk", None)
|
||||
]
|
||||
|
||||
def cleanup(self):
|
||||
for monitor in self._monitors:
|
||||
tuned.monitors.get_repository().delete(monitor)
|
||||
|
||||
def update_tuning(self):
|
||||
pass
|
||||
Loading…
Reference in a new issue