Don't return the passphrase from hasKey. Should return a boolean.
Ack.
On 02/05/2010 08:07 AM, David Lehman wrote:
---
storage/formats/luks.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/storage/formats/luks.py b/storage/formats/luks.py
index 880f652..ea3e3d2 100644
--- a/storage/formats/luks.py
+++ b/storage/formats/luks.py
@@ -134,7 +134,7 @@ class LUKS(DeviceFormat):
@property
def hasKey(self):
- return (self.__passphrase or
+ return ((self.__passphrase not in ["", None]) or
(self._key_file and os.access(self._key_file, os.R_OK)))
@property
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|