From aa1a737ba044d52e3bc67963dd01b13b693eb8ed Mon Sep 17 00:00:00 2001 From: Jan Vcelak Date: Fri, 11 May 2012 16:13:09 +0200 Subject: [PATCH] bluetooth plugin: create new, derive from rfkill base --- tuned/plugins/plugin_bluetooth.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tuned/plugins/plugin_bluetooth.py diff --git a/tuned/plugins/plugin_bluetooth.py b/tuned/plugins/plugin_bluetooth.py new file mode 100644 index 0000000..7c4787f --- /dev/null +++ b/tuned/plugins/plugin_bluetooth.py @@ -0,0 +1,15 @@ +import tuned.plugins +import tuned.log + +log = tuned.log.get() + +class BluetoothPlugin(tuned.plugins.RFKillPlugin): + """ + Plugin for tuning bluetooth devices. + """ + + # + # TODO: ticket #24 + # + + pass