diff options
author | Matt Wilson <msw@redhat.com> | 2000-01-20 00:14:07 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-01-20 00:14:07 +0000 |
commit | 139731ac0dd3f0f96eacec1331cc1acc1eacdb10 (patch) | |
tree | 94935e1ca776b61e9a8de6835c7e8a53a5ecaca7 /text.py | |
parent | 5ac35109aa5c5e95e415c1e5a4a2759938ea2e7a (diff) | |
download | anaconda-139731ac0dd3f0f96eacec1331cc1acc1eacdb10.tar.gz anaconda-139731ac0dd3f0f96eacec1331cc1acc1eacdb10.tar.xz anaconda-139731ac0dd3f0f96eacec1331cc1acc1eacdb10.zip |
again tried to fix fstab creation for upgrades
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -265,8 +265,13 @@ class UpgradeExamineWindow: def __call__ (self, dir, screen, todo): if dir == -1: # Hack to let backing out of upgrades work properly + from fstab import NewtFstab if todo.fstab: todo.fstab.turnOffSwap() + todo.fstab = NewtFstab(todo.setupFilesystems, + todo.serial, 0, 0, + todo.intf.waitWindow, + todo.intf.messageWindow) return INSTALL_NOOP parts = todo.upgradeFindRoot () |