|
From: Linda K. <lin...@hp...> - 2013-08-27 17:59:54
|
Looks good, thanks.
-- ljk
On 08/21/13 12:23, Jiri Jaburek wrote:
> From: Miroslav Vadkerti <mva...@re...>
>
> The new cryptsetup package changed the string that is asking
> for LUKS password. The patch now expectes smaller string and
> so accepts all previously used strings.
>
> Signed-off-by: Miroslav Vadkerti <mva...@re...>
> ---
> audit-test/utils/tp_luks_functions.bash | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/audit-test/utils/tp_luks_functions.bash b/audit-test/utils/tp_luks_functions.bash
> index 3a1a928..34d594e 100644
> --- a/audit-test/utils/tp_luks_functions.bash
> +++ b/audit-test/utils/tp_luks_functions.bash
> @@ -33,7 +33,7 @@ function create_luks {
> set timeout $TIMEOUT
> spawn cryptsetup luksFormat $LOOPDEV
> expect {Are you sure} {send \"YES\r\"}
> - expect {Enter LUKS} {send \"$1\r\"}
> + expect {Enter} {send \"$1\r\"}
> expect {Verify} {send \"$1\r\"}
> expect eof
> "
>
|