diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-04-08 09:54:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-08 09:54:43 +0200 |
commit | 3799b5c7698d7ef52ee7695f63a9252f7e0519ab (patch) | |
tree | 30a1d2d759629715cde0a3c942f8b23895f58be0 | |
parent | 4c94162242ff88d51aecc1246e3ad46d34649ede (diff) | |
parent | 37083ff53419ecdef34b08c1d2b62291b9677111 (diff) | |
download | vyos-build-3799b5c7698d7ef52ee7695f63a9252f7e0519ab.tar.gz vyos-build-3799b5c7698d7ef52ee7695f63a9252f7e0519ab.zip |
Merge pull request #552 from vyos/mergify/bp/sagitta/pr-551
image-tools: T6207: update test script for prompt for boot config (backport #551)
-rwxr-xr-x | scripts/check-qemu-install | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 086eeab2..f461d589 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -321,6 +321,8 @@ try: c.sendline('y') c.expect('\nInstallation will delete all data on both drives. Continue?.*') c.sendline('y') + c.expect('\nWhich file would you like as boot config?.*') + c.sendline('') else: c.expect('\nWhich one should be used for installation?.*') c.sendline('') @@ -328,6 +330,8 @@ try: c.sendline('y') c.expect('\nWould you like to use all the free space on the drive?.*') c.sendline('y') + c.expect('\nWhich file would you like as boot config?.*') + c.sendline('') log.info('system installed, shutting down') |