From 377d9ed2049ca6efaa179f40acfbafb6f8ae3f5f Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Fri, 29 Jan 2010 12:07:13 -0500 Subject: Add missing methods to RescueInterface Some methods have been added to other intfs but not to RescueInterface; they must be added there as well. --- rescue.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'rescue.py') diff --git a/rescue.py b/rescue.py index 4ae4d6f00..7f4815034 100644 --- a/rescue.py +++ b/rescue.py @@ -102,6 +102,12 @@ class RescueInterface: w.pop() return (passphrase, isglobal) + def resetInitializeDiskQuestion(self): + self._initLabelAnswers = {} + + def resetReinitInconsistentLVMQuestion(self): + self._inconsistentLVMAnswers = {} + def shutdown (self): pass -- cgit