diff options
author | Mike Fulbright <msf@redhat.com> | 2000-05-24 22:22:55 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-05-24 22:22:55 +0000 |
commit | 41c39bf80a2faa6500b5f9a71db930131eb4db1e (patch) | |
tree | 4be2bfb46e8bc986387f85fe7e8225e00e0eeaaf /text.py | |
parent | 7f11041ee9ca90fa8a333ce3c0a24ede4aba14be (diff) | |
download | anaconda-41c39bf80a2faa6500b5f9a71db930131eb4db1e.tar.gz anaconda-41c39bf80a2faa6500b5f9a71db930131eb4db1e.tar.xz anaconda-41c39bf80a2faa6500b5f9a71db930131eb4db1e.zip |
fixes harddrive install to not nuke source partition, and also get --onpart to work (and warn when is can't because clearpart is on
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -230,7 +230,7 @@ class InstallPathWindow: todo.intf.messageWindow, todo.intf.progressWindow, not todo.expert, - todo.method.protectedDevices()) + todo.method.protectedPartitions()) return INSTALL_NOOP classes = installclass.availableClasses() @@ -287,7 +287,7 @@ class InstallPathWindow: todo.intf.messageWindow, todo.intf.progressWindow, not todo.expert, - todo.method.protectedDevices()) + todo.method.protectedPartitions()) return INSTALL_OK @@ -304,7 +304,7 @@ class UpgradeExamineWindow: todo.intf.messageWindow, todo.intf.progressWindow, not todo.expert, - todo.method.protectedDevices()) + todo.method.protectedPartitions()) return INSTALL_NOOP |