summaryrefslogtreecommitdiffstats
path: root/cmdline.py
diff options
context:
space:
mode:
authorMartin Sivak <msivak@redhat.com>2008-07-24 16:26:02 +0200
committerMartin Sivak <msivak@redhat.com>2008-07-24 16:35:56 +0200
commit9d120444843ec87c84cad8b20a12e0421639b279 (patch)
tree46a3bc4c0bc8251a8a6234d306a69ae0a639baa5 /cmdline.py
parent4ecd2b468bcb30addc153492069cdd9da24f7625 (diff)
downloadanaconda-9d120444843ec87c84cad8b20a12e0421639b279.tar.gz
anaconda-9d120444843ec87c84cad8b20a12e0421639b279.tar.xz
anaconda-9d120444843ec87c84cad8b20a12e0421639b279.zip
Suspend the curses interface before calling scripts and resume afterwards (#435314)
Diffstat (limited to 'cmdline.py')
-rw-r--r--cmdline.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/cmdline.py b/cmdline.py
index de14ada32..0aa980285 100644
--- a/cmdline.py
+++ b/cmdline.py
@@ -72,6 +72,12 @@ class InstallInterface:
def shutdown(self):
pass
+ def suspend(self):
+ pass
+
+ def resume(self):
+ pass
+
def progressWindow(self, title, text, total, updpct = 0.05, pulse = False):
return ProgressWindow(title, text, total, updpct, pulse)