summaryrefslogtreecommitdiffstats
path: root/autopart.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-08-13 19:57:29 +0000
committerJeremy Katz <katzj@redhat.com>2001-08-13 19:57:29 +0000
commit600bac3e270c0d3367529e7c10cd0ad1d6f9be93 (patch)
treea37cf4437b478c27c13adbce833246942f2eb236 /autopart.py
parent57ada56c0a75951382ac39d1feda81589fe808f2 (diff)
downloadanaconda-600bac3e270c0d3367529e7c10cd0ad1d6f9be93.tar.gz
anaconda-600bac3e270c0d3367529e7c10cd0ad1d6f9be93.tar.xz
anaconda-600bac3e270c0d3367529e7c10cd0ad1d6f9be93.zip
bootable requests need to be fit at roughly the same priority as primary only partitions so they meet their constraints
Diffstat (limited to 'autopart.py')
-rw-r--r--autopart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/autopart.py b/autopart.py
index 34760912e..d114442da 100644
--- a/autopart.py
+++ b/autopart.py
@@ -229,7 +229,7 @@ def fitSized(diskset, requests, primOnly = 0, newParts = None):
continue
if request.device:
continue
- if primOnly and not request.primary:
+ if primOnly and not request.primary and request != bootreq:
continue
if request == bootreq:
drives = getDriveList(request, diskset)