[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH] Fix a typo to make encrypted installs get farther.
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Subject: [PATCH] Fix a typo to make encrypted installs get farther.
- Date: Tue, 7 Jun 2011 12:44:52 -0400
---
pyanaconda/storage/devicelibs/crypto.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/pyanaconda/storage/devicelibs/crypto.py b/pyanaconda/storage/devicelibs/crypto.py
index b018b60..134e67f 100644
--- a/pyanaconda/storage/devicelibs/crypto.py
+++ b/pyanaconda/storage/devicelibs/crypto.py
@@ -91,8 +91,8 @@ def luks_format(device,
cipherType = "".join(cparts[0:1])
cipherMode = "-".join(cparts[1:])
- if cipherType: kwargs["cipher"] = cipherTy
- if cipherMode: kwargs["cipherMode"] = cipherMo
+ if cipherType: kwargs["cipher"] = cipherType
+ if cipherMode: kwargs["cipherMode"] = cipherMode
if key_size: kwargs["keysize"] = key_size
rc = cs.luksFormat(**kwargs)
--
1.7.4.1
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]