diff options
author | John Estabrook <jestabro@vyos.io> | 2024-04-07 22:41:42 -0500 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-04-08 05:37:34 +0000 |
commit | 37083ff53419ecdef34b08c1d2b62291b9677111 (patch) | |
tree | 30a1d2d759629715cde0a3c942f8b23895f58be0 | |
parent | 4c94162242ff88d51aecc1246e3ad46d34649ede (diff) | |
download | vyos-build-37083ff53419ecdef34b08c1d2b62291b9677111.tar.gz vyos-build-37083ff53419ecdef34b08c1d2b62291b9677111.zip |
image-tools: T6207: update test script for prompt for boot config
(cherry picked from commit 4a8bc369ef7c9ebd8e1ce0d4067fca5f474204a7)
-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') |