diff options
| author | David Lehman <dlehman@redhat.com> | 2009-02-24 11:23:40 -0600 |
|---|---|---|
| committer | David Lehman <dlehman@redhat.com> | 2009-02-24 11:23:40 -0600 |
| commit | f8b7f2be4ed499045bcd3df5d02a3c065bd2a4a3 (patch) | |
| tree | 564378b9c40c2ed9fd0d7961d85325acdfb43a21 /exception.py | |
| parent | 0184b44db1d50ca405f93695c02ed2f8921cdd16 (diff) | |
Lots of little updates to make things use the new storage module.
exception.py:
- Remove unused partedUtils import.
- Collect things from storage, not partitions.
gui.py:
- exceptionDisks is in storage now, not diskset.
installclasses/rhel.py:
installclasses/fedora.py:
- setDefaultPartitioning take storage arg, not partitions.
iw/autopart_type.py:
- Find things in storage, not partitions.
iw/bootloader_main_gui.py:
iw/osbootwidget.py:
- Remove unused partedUtils import.
- Find fsset in storage now.
- Use storage, not diskset, for iterating over disks/partitions.
iw/lvm_dialog_gui.py:
- Fix several typos from the original storage update.
iw/partition_gui.py:
- Find unusedMDMembers in storage, not partitions.
iw/partitionui_helpers_gui.py:
- Use StorageDevice.minSize,maxSize for resize limits.
- Update doUIRAIDLVMChecks to use new storage module.
packages.py:
- Use new storage module to list vgs for selinux hack.
storage/__init__.py:
- Fix FSSet.createSwapFile so it creates the file on the
correct device.
storage/iscsi.py:
- Use new storage module to identify iscsi disks.
textw/partition_text.py:
textw/upgrade_text.py:
- Initial update to use new storage module.
yuminstall.py:
- Use storage module to find space for upgrade transaction.
- Use storage module to locate protected partitions to mount
in doPreInstall.
Diffstat (limited to 'exception.py')
| -rw-r--r-- | exception.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/exception.py b/exception.py index 681b3ec5d..ddf82b517 100644 --- a/exception.py +++ b/exception.py @@ -35,7 +35,6 @@ import inspect import iutil import types import bdb -import partedUtils from string import joinfields from cPickle import Pickler from flags import flags @@ -183,11 +182,11 @@ class AnacondaExceptionDump: "anaconda.id.instLanguage.tz", "anaconda.id.keyboard._mods._modelDict", "anaconda.id.keyboard.modelDict", - "anaconda.id.partitions.encryptionPassphrase", + "anaconda.id.storage.encryptionPassphrase", "anaconda.id.rootPassword", "anaconda.id.tmpData", "anaconda.intf.icw.buff", - "anaconda.intf.icw.currentWindow.partitions.encryptionPassphrase", + "anaconda.intf.icw.currentWindow.storage.encryptionPassphrase", "anaconda.intf.icw.stockButtons", "dispatch.sack.excludes", ] |
