[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: activeate encrypted devices.
- From: Dave Lehman <dlehman redhat com>
- To: Discussion of Development and Customization of the Red Hat Linux Installer <anaconda-devel-list redhat com>
- Subject: Re: activeate encrypted devices.
- Date: Tue, 04 Nov 2008 11:45:33 -0600
> Looked at this a little closer and found out that we are ignoring the call of the function that checks for root if the ks file contains install.
> the patch is attached.
> review appreciated.
>
I worry what consequences this approach will have. For one thing,
findRootParts will alter the dispatcher's step list. A simple fix might
be to add the call back into setFromDisk, but only if we're doing
kickstart:
diff --git a/partitions.py b/partitions.py
index baf8faf..d266605 100644
--- a/partitions.py
+++ b/partitions.py
@@ -369,6 +369,8 @@ class Partitions:
"""Clear the delete list and set self.requests to reflect
disk."""
self.deletes = []
self.requests = []
+ if diskset.anaconda.isKickstart:
+ self.getEncryptedDevices(diskset)
labels = diskset.getInfo()
drives = diskset.disks.keys()
drives.sort()
This is untested, so it might cause problems as well.
Dave
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]