summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2024-04-16 20:25:58 -0500
committerGitHub <noreply@github.com>2024-04-16 20:25:58 -0500
commit260731870a4bcb2a2737236a13a4e7be45d380a8 (patch)
tree79abbb4b58c73f7d86663f97b02b225e180cce52
parentfbc7d23daa9d0241fd8ae21caef37df7f1faa0f0 (diff)
parent69221133238f19b8e5068b31dabd9175453c8aca (diff)
downloadvyos-build-260731870a4bcb2a2737236a13a4e7be45d380a8.tar.gz
vyos-build-260731870a4bcb2a2737236a13a4e7be45d380a8.zip
Merge pull request #570 from vyos/mergify/bp/sagitta/pr-569
image-tools: T6154: installer prompts to confirm password (backport #569)
-rwxr-xr-xscripts/check-qemu-install4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install
index f461d589..b3d9f3a1 100755
--- a/scripts/check-qemu-install
+++ b/scripts/check-qemu-install
@@ -310,7 +310,9 @@ try:
c.expect('\nWhat would you like to name this image?.*')
c.sendline('')
c.expect(f'\nPlease enter a password for the "{default_user}" user.*')
- c.sendline('')
+ c.sendline('vyos')
+ c.expect(f'\nPlease confirm password for the "{default_user}" user.*')
+ c.sendline('vyos')
c.expect('\nWhat console should be used by default?.*')
c.sendline('S')