[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [PATCH] Fix incorrect attribute name use for retrofit flag.
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Subject: Re: [PATCH] Fix incorrect attribute name use for retrofit flag.
- Date: Fri, 24 Apr 2009 15:21:44 -0400
> diff --git a/storage/__init__.py b/storage/__init__.py
> index 6f063d4..9a1999e 100644
> --- a/storage/__init__.py
> +++ b/storage/__init__.py
> @@ -130,7 +130,7 @@ def storageComplete(anaconda):
> (passphrase, retrofit) = anaconda.intf.getLuksPassphrase(preexist=existing_luks)
> if passphrase:
> anaconda.id.storage.encryptionPassphrase = passphrase
> - anaconda.id.storage.retrofitPassphrase = retrofit
> + anaconda.id.storage.encryptionRetrofit = retrofit
> for dev in anaconda.id.storage.devices:
> if dev.format.type == "luks" and not dev.format.exists:
> dev.format.passphrase = passphrase
> @@ -761,7 +761,7 @@ class Storage(object):
> in the system so that users only have to enter one passphrase
> during system boot.
> """
> - if not self.retrofitPassphrase:
> + if not self.encryptionRetrofit:
> return
>
> for device in self.devices:
Looks good to me.
- Chris
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]