PerfRepo support has been removed.
Signed-off-by: Jan Tluka jtluka@redhat.com --- install/lnst-ctl.conf.in | 5 ----- lnst-ctl.conf | 5 ----- lnst/Controller/Config.py | 20 -------------------- 3 files changed, 30 deletions(-)
diff --git a/install/lnst-ctl.conf.in b/install/lnst-ctl.conf.in index 295f9ba..161c5c3 100644 --- a/install/lnst-ctl.conf.in +++ b/install/lnst-ctl.conf.in @@ -56,8 +56,3 @@ allow_virtual = True # which contains the slave machine descriptions. [pools]
-# Optional section for configuring access to a PerfRepo instance -#[perfrepo] -#url = -#username = -#password = diff --git a/lnst-ctl.conf b/lnst-ctl.conf index 8f4b95c..873967e 100644 --- a/lnst-ctl.conf +++ b/lnst-ctl.conf @@ -12,9 +12,4 @@ log_dir = ./Logs xslt_url = http://www.lnst-project.org/files/result_xslt/xml_to_html.xsl allow_virtual = True
-[perfrepo] -url = -username = -password = - [pools] diff --git a/lnst/Controller/Config.py b/lnst/Controller/Config.py index b82787c..774528f 100644 --- a/lnst/Controller/Config.py +++ b/lnst/Controller/Config.py @@ -62,26 +62,6 @@ class CtlConfig(Config): "name" : "allow_virtual" }
- self._options['perfrepo'] = dict() - self._options['perfrepo']['url'] = {\ - "value" : "", - "additive" : False, - "action" : self.optionPlain, - "name" : "url" - } - self._options['perfrepo']['username'] = {\ - "value" : "", - "additive" : False, - "action" : self.optionPlain, - "name" : "username" - } - self._options['perfrepo']['password'] = {\ - "value" : "", - "additive" : False, - "action" : self.optionPlain, - "name" : "password" - } - self._options['pools'] = dict()
self._options['security'] = dict()