diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-05-29 20:22:59 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-05-29 20:22:59 +0000 |
commit | 516971c3ccf8a6db83d53b979ccd330293189d3e (patch) | |
tree | dc22a2a513a9e0d4c6ffee8b1a2776fbf6dab5d5 | |
parent | 844a4a53daf1a86571e8c299c5305a5de85de3e8 (diff) | |
download | anaconda-516971c3ccf8a6db83d53b979ccd330293189d3e.tar.gz anaconda-516971c3ccf8a6db83d53b979ccd330293189d3e.tar.xz anaconda-516971c3ccf8a6db83d53b979ccd330293189d3e.zip |
give raid and lvm via kickstart a chance of actually working
-rw-r--r-- | autopart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autopart.py b/autopart.py index 9828f82e8..e5224b300 100644 --- a/autopart.py +++ b/autopart.py @@ -940,7 +940,7 @@ def doAutoPartition(dir, diskset, partitions, intf, instClass, dispatch): req.fstype = request.fstype else: req = copy.copy(request) - if not req.drive: + if req.type == REQUEST_NEW and not req.drive: req.drive = drives partitions.addRequest(req) |