diff options
author | John Estabrook <jestabro@vyos.io> | 2024-04-16 13:23:52 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2024-04-16 14:15:51 -0500 |
commit | 6fe57a7042e82af3a587376ab014d76dc0920e35 (patch) | |
tree | f7b505fc31cd8ea2f5209c9d55410465628d95a8 /scripts | |
parent | 3a674cfaa7baf366632c0f01261713ce8d5baab1 (diff) | |
download | vyos-build-6fe57a7042e82af3a587376ab014d76dc0920e35.tar.gz vyos-build-6fe57a7042e82af3a587376ab014d76dc0920e35.zip |
image-tools: T6154: installer prompts to confirm non-default password
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check-qemu-install | 4 |
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') |