diff options
author | Christian Breunig <christian@breunig.cc> | 2024-04-08 07:37:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-08 07:37:19 +0200 |
commit | f32d9fa78b8ccb3d0fb48d6c811ae57e8ed93015 (patch) | |
tree | d81b58957f37b5983e89bfedf9e1f9f325e9f11c /scripts | |
parent | 0c12b79fd8d13db8e7b9789132a0eb7f5ba27a8d (diff) | |
parent | 4a8bc369ef7c9ebd8e1ce0d4067fca5f474204a7 (diff) | |
download | vyos-build-f32d9fa78b8ccb3d0fb48d6c811ae57e8ed93015.tar.gz vyos-build-f32d9fa78b8ccb3d0fb48d6c811ae57e8ed93015.zip |
Merge pull request #551 from jestabro/default-config-choice
image-tools: T6207: update test script for prompt for boot config
Diffstat (limited to 'scripts')
-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 41c566e6..9bce00cf 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') |