From 464c62cce64a09dc3ca4089522394bab17f4d56f Mon Sep 17 00:00:00 2001 From: Mike Fulbright Date: Wed, 14 Aug 2002 05:09:57 +0000 Subject: fix anaconda-ks.cfg with physical volumes on raid --- partitions.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'partitions.py') diff --git a/partitions.py b/partitions.py index 8ae7c3e4d..53d70e306 100644 --- a/partitions.py +++ b/partitions.py @@ -952,6 +952,9 @@ class Partitions: # first argument is mountpoint, which can also be swap if request.fstype.getName() == "swap": args.append("swap") + elif request.fstype.getName() == "physical volume (LVM)": + # see above about uniqueIDs being ints + args.append("pv.%s" % (request.uniqueID)) elif request.mountpoint: args.append(request.mountpoint) else: -- cgit