From cd646619dd4723f8e4ac7325c3cc5e81193dbd40 Mon Sep 17 00:00:00 2001 From: Martin Sivak Date: Tue, 26 Feb 2008 15:19:42 +0100 Subject: Rename the Return* classes to more sane names and update everything to use them Fix the NoOptionError exception throwing in configuration Add the -a|--auto parameter to launch the automatic mode of operation --- plugins/plugin_examples/sample1Plugin.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'plugins/plugin_examples/sample1Plugin.py') diff --git a/plugins/plugin_examples/sample1Plugin.py b/plugins/plugin_examples/sample1Plugin.py index 8218104..22d033f 100644 --- a/plugins/plugin_examples/sample1Plugin.py +++ b/plugins/plugin_examples/sample1Plugin.py @@ -28,27 +28,27 @@ class Sample1Plugin(Plugin): self.reporting = kwargs.get('reporting') def prepare(self): - self._result=ReturnFavorable + self._result=ReturnSuccess self.reporting.info("Sample1Plugin in Prepare task", self) def backup(self): - self._result=ReturnFavorable + self._result=ReturnSuccess self.reporting.info("Sample1Plugin in backup task", self) def restore(self): - self._result=ReturnFavorable + self._result=ReturnSuccess self.reporting.info("Sample1Plugin in Restore task", self) def diagnose(self): - self._result=ReturnFavorable + self._result=ReturnSuccess self.reporting.info("Sample1Plugin in diagnose task", self) def fix(self): - self._result=ReturnUnfavorable + self._result=ReturnFailure self.reporting.info("Sample1Plugin in Fix task", self) def clean(self): - self._result=ReturnFavorable + self._result=ReturnSuccess self.reporting.info("Sample1Plugin in Clean task", self) def get_plugin(): -- cgit