diff options
author | John Estabrook <jestabro@vyos.io> | 2024-04-07 22:41:42 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2024-04-07 22:41:42 -0500 |
commit | 4a8bc369ef7c9ebd8e1ce0d4067fca5f474204a7 (patch) | |
tree | d81b58957f37b5983e89bfedf9e1f9f325e9f11c | |
parent | 0c12b79fd8d13db8e7b9789132a0eb7f5ba27a8d (diff) | |
download | vyos-build-4a8bc369ef7c9ebd8e1ce0d4067fca5f474204a7.tar.gz vyos-build-4a8bc369ef7c9ebd8e1ce0d4067fca5f474204a7.zip |
image-tools: T6207: update test script for prompt for boot config
-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 41c566e..9bce00c 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -347,6 +347,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('') @@ -354,6 +356,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') |