summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2024-04-17 04:05:00 +0300
committerGitHub <noreply@github.com>2024-04-17 04:05:00 +0300
commit67511ae3bfc3fcdadf255fbfcd4dee629cab591f (patch)
treef7b505fc31cd8ea2f5209c9d55410465628d95a8 /scripts
parent3a674cfaa7baf366632c0f01261713ce8d5baab1 (diff)
parent6fe57a7042e82af3a587376ab014d76dc0920e35 (diff)
downloadvyos-build-67511ae3bfc3fcdadf255fbfcd4dee629cab591f.tar.gz
vyos-build-67511ae3bfc3fcdadf255fbfcd4dee629cab591f.zip
Merge pull request #569 from jestabro/confirm-pass
image-tools: T6154: installer prompts to confirm password
Diffstat (limited to 'scripts')
-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 9bce00cf..b8f3806b 100755
--- a/scripts/check-qemu-install
+++ b/scripts/check-qemu-install
@@ -336,7 +336,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')