diff options
author | Erik Troan <ewt@redhat.com> | 1999-12-08 16:13:00 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-12-08 16:13:00 +0000 |
commit | 730aa2a87c13acfa76992cf7044d18bea2b23398 (patch) | |
tree | 3f0131b76031a7d34bfb3ae0690aa273c8cba895 /text.py | |
parent | 1240ea70538805c0d90ad05649af5e306453cb21 (diff) | |
download | anaconda-730aa2a87c13acfa76992cf7044d18bea2b23398.tar.gz anaconda-730aa2a87c13acfa76992cf7044d18bea2b23398.tar.xz anaconda-730aa2a87c13acfa76992cf7044d18bea2b23398.zip |
began isolating ddruid, fstab, and raid stuff into separate fstab.py
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -8,6 +8,7 @@ import rpm import time import gettext_rh import glob +from fstab import NewtFstab cat = gettext_rh.Catalog ("anaconda", "/usr/share/locale") @@ -1018,7 +1019,7 @@ class InstallInterface: self.screen.pushHelpLine (_(" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen")) # uncomment this line to make the installer quit on <Ctrl+Z> # handy for quick debugging. -# self.screen.suspendCallback(killSelf, self.screen) + self.screen.suspendCallback(killSelf, self.screen) # uncomment this line to drop into the python debugger on <Ctrl+Z> # --VERY handy-- # self.screen.suspendCallback(debugSelf, self.screen) @@ -1032,6 +1033,8 @@ class InstallInterface: def run(self, todo, test = 0): if todo.serial: self.screen.suspendCallback(spawnShell, self.screen) + todo.fstab = NewtFstab(todo.setupFilesystems, todo.serial, 0, 0, + self.waitWindow) if todo.reconfigOnly: self.commonSteps = [ |