summaryrefslogtreecommitdiffstats
path: root/cmdline.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-11-30 16:00:54 -0500
committerChris Lumens <clumens@redhat.com>2009-12-11 16:16:18 -0500
commit15e5b5dce995e60e5251ca33a636a7b7e86b59c3 (patch)
treecc92063ea441f9ce478eedec4309d62052b5ca66 /cmdline.py
parent3ebabfdcd9c5a61bf8afe57a7ae1e75ad6889b30 (diff)
downloadanaconda-15e5b5dce995e60e5251ca33a636a7b7e86b59c3.tar.gz
anaconda-15e5b5dce995e60e5251ca33a636a7b7e86b59c3.tar.xz
anaconda-15e5b5dce995e60e5251ca33a636a7b7e86b59c3.zip
Allow InstallInterfaces to modify the installation steps.
This will be handy for the filtering interface that does not at all exist in text mode.
Diffstat (limited to 'cmdline.py')
-rw-r--r--cmdline.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmdline.py b/cmdline.py
index 310dc7662..c6c98be13 100644
--- a/cmdline.py
+++ b/cmdline.py
@@ -157,7 +157,9 @@ class InstallInterface:
anaconda.dispatch.gotoNext()
(step, instance) = anaconda.dispatch.currentStep()
-
+
+ def setSteps(self, anaconda):
+ pass
class progressDisplay:
def __init__(self):