diff options
author | Chris Lumens <clumens@redhat.com> | 2006-03-23 20:18:50 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-03-23 20:18:50 +0000 |
commit | dc5432f6261c3ee4e1fefa48679ac0279f928188 (patch) | |
tree | 1f01f6ef9cb344828291841b1dcb8ad8f8d3d550 /partedUtils.py | |
parent | f7b0830555d52ed74f4518d521ed67554aa03095 (diff) | |
download | anaconda-dc5432f6261c3ee4e1fefa48679ac0279f928188.tar.gz anaconda-dc5432f6261c3ee4e1fefa48679ac0279f928188.tar.xz anaconda-dc5432f6261c3ee4e1fefa48679ac0279f928188.zip |
Ignore disks listed in ignoredisks, even if we have clearpart --all (#186438).
Diffstat (limited to 'partedUtils.py')
-rw-r--r-- | partedUtils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/partedUtils.py b/partedUtils.py index a8be5ea88..332b284e7 100644 --- a/partedUtils.py +++ b/partedUtils.py @@ -893,7 +893,8 @@ class DiskSet: for drive in self.driveList(): log.debug(" %s" % (drive,)) for drive in self.driveList(): - if drive in DiskSet.skippedDisks and not initAll: + # ignoredisk takes precedence over clearpart (#186438). + if drive in DiskSet.skippedDisks: continue deviceFile = isys.makeDevInode(drive, "/dev/" + drive) if isys.driveIsRemovable(drive) and not flags.expert: |