summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorSimon <965089+sarthurdev@users.noreply.github.com>2026-01-07 13:00:04 +0100
committerGitHub <noreply@github.com>2026-01-07 13:00:04 +0100
commit571943a976e27fcdb133bbf327993e6e1ba374c1 (patch)
tree8217b3dfd5c3aff807396b8cd5b935685f37297e /scripts
parent153ae47f728a2d09641701ec86a3b9472c3183e7 (diff)
parent3c7a074917d1118a0a47ac886a12574c6f1184b5 (diff)
downloadvyos-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
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check-qemu-install2
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)