diff options
| author | Simon <965089+sarthurdev@users.noreply.github.com> | 2026-01-07 13:00:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-07 13:00:04 +0100 |
| commit | 571943a976e27fcdb133bbf327993e6e1ba374c1 (patch) | |
| tree | 8217b3dfd5c3aff807396b8cd5b935685f37297e | |
| parent | 153ae47f728a2d09641701ec86a3b9472c3183e7 (diff) | |
| parent | 3c7a074917d1118a0a47ac886a12574c6f1184b5 (diff) | |
| download | vyos-build-571943a976e27fcdb133bbf327993e6e1ba374c1.tar.gz vyos-build-571943a976e27fcdb133bbf327993e6e1ba374c1.zip | |
Merge pull request #1097 from giga1699/T8146
T8146: Confirm the key when config encryption is configured without TPM
| -rwxr-xr-x | scripts/check-qemu-install | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 9abd5e85..5f96cec6 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -961,6 +961,8 @@ try: c.sendline('y') c.expect('Enter key: ') c.sendline(test_recovery_key) + c.expect('Confirm key:') + c.sendline(test_recovery_key) c.expect('Enter size of encrypted config partition.*', timeout=30) c.sendline('32') c.expect('Encrypted config volume has been enabled', timeout=tpm_timeout) |
