summaryrefslogtreecommitdiffstats
path: root/partitions.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2008-07-09 13:49:59 -0500
committerDavid Lehman <dlehman@redhat.com>2008-07-09 15:46:02 -0500
commit3fb5befb352d982c539a230e2e3679e5b2a45822 (patch)
tree8ffee3fbb2402c5da93e1d459713b05a72a0b477 /partitions.py
parent2cf385b41e2c7a6b53679d28a2d72ff957680f1b (diff)
downloadanaconda-3fb5befb352d982c539a230e2e3679e5b2a45822.tar.gz
anaconda-3fb5befb352d982c539a230e2e3679e5b2a45822.tar.xz
anaconda-3fb5befb352d982c539a230e2e3679e5b2a45822.zip
Device-level support for encrypted block devices. (#229865)
Block device encryption patch 1/7 Introduce the LUKSDevice class and hook it up to the Device classes in fsset.py. Also add code to generate /etc/crypttab based on the devices we know about.
Diffstat (limited to 'partitions.py')
-rw-r--r--partitions.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/partitions.py b/partitions.py
index 96b0cd9d4..c64309fe4 100644
--- a/partitions.py
+++ b/partitions.py
@@ -39,6 +39,8 @@ log = logging.getLogger("anaconda")
class Partitions:
"""Defines all of the partition requests and delete requests."""
+ encryptedDevices = {}
+
def __init__ (self, diskset = None):
"""Initializes a Partitions object.