diff options
author | Mike Fulbright <msf@redhat.com> | 2001-02-01 20:14:36 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-02-01 20:14:36 +0000 |
commit | 95ab566c57e2525ce12af7a26cb9e40bb93dfd5e (patch) | |
tree | f006a54cfc3318a5c7992db677f7d89d4e246275 | |
parent | 276655d8f85fb0a85377bb8603cfaecbf6b63632 (diff) | |
download | anaconda-95ab566c57e2525ce12af7a26cb9e40bb93dfd5e.tar.gz anaconda-95ab566c57e2525ce12af7a26cb9e40bb93dfd5e.tar.xz anaconda-95ab566c57e2525ce12af7a26cb9e40bb93dfd5e.zip |
reenable partitionless installs
-rw-r--r-- | upgrade.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/upgrade.py b/upgrade.py index 0e4b78b5f..788734b82 100644 --- a/upgrade.py +++ b/upgrade.py @@ -64,12 +64,7 @@ def findExistingRoots (intf, theFstab): continue if os.access('/mnt/sysimage/redhat.img', os.R_OK): -# old code rootparts.append((dev, "vfat")) - intf.messageWindow(_("Error"), - _("Partitionless upgrades are NOT supported in this beta")) - isys.umount('/mnt/sysimage') - win.pop () - return [] + rootparts.append((dev, "vfat")) isys.umount('/mnt/sysimage') |