summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2023-11-15 15:15:10 -0600
committerJohn Estabrook <jestabro@vyos.io>2023-12-16 21:09:22 -0600
commit9b12a11b3af935a0dc751a69b18c08d001fb1a4f (patch)
treef6306d7c34b99b51bbbbe3e99cf5338a1c21e901 /scripts
parentb29c9a3e4dd4b1280374b8b339db8f4ce7228729 (diff)
downloadvyos-build-9b12a11b3af935a0dc751a69b18c08d001fb1a4f.tar.gz
vyos-build-9b12a11b3af935a0dc751a69b18c08d001fb1a4f.zip
image: T4516: update test script for changes in prompts/partition id
(cherry picked from commit 64796852a4ba1eae5c7b436109365b798a99b38e)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check-qemu-install53
1 files changed, 20 insertions, 33 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install
index 1095c7ee..9ad0c2e9 100755
--- a/scripts/check-qemu-install
+++ b/scripts/check-qemu-install
@@ -305,42 +305,29 @@ try:
#################################################
log.info('Starting installer')
c.sendline('install image')
- c.expect('\nWould you like to continue?.*:')
- c.sendline('yes')
-
- if args.raid:
- c.expect('\nWould you like to configure RAID-1 mirroring on them?.*:')
- c.sendline('yes')
- # Erase all data on disks
- c.expect('\nAre you sure you want to do this?.*:')
- c.sendline('yes')
- else:
- log.info('Partitioning disk')
- c.expect('\nPartition.*:')
- c.sendline('')
- c.expect('\nInstall the image on.*:')
- c.sendline('')
- c.expect(r'\nContinue\?.*:')
- c.sendline('Yes')
- c.expect('\nHow big of a root partition should I create?.*:')
- c.sendline('')
-
- log.info('Disk(s) partitioned, installing...')
- c.expect('\nWhat would you like to name this image?.*:', timeout=600)
+ c.expect('\nWould you like to continue?.*')
+ c.sendline('y')
+ c.expect('\nWhat would you like to name this image?.*')
c.sendline('')
- log.info('Copying files')
- c.expect('\nWhich one should I copy to.*:', timeout=600)
+ c.expect(f'\nPlease enter a password for the "{default_user}" user.*')
c.sendline('')
- log.info('Files Copied!')
- c.expect('\nEnter password for user.*:')
- c.sendline(default_user)
- c.expect('\nRetype password for user.*:')
- c.sendline(default_password)
+ c.expect('\nWhat console should be used by default?.*')
+ c.sendline('S')
- if not args.raid:
- c.expect('\nWhich drive should GRUB modify the boot partition on.*:')
+ if args.raid:
+ c.expect('\nWould you like to configure RAID-1 mirroring??.*')
+ c.sendline('y')
+ c.expect('\nWould you like to configure RAID-1 mirroring on them?.*')
+ c.sendline('y')
+ c.expect('\nInstallation will delete all data on both drives. Continue?.*')
+ c.sendline('y')
+ else:
+ c.expect('\nWhich one should be used for installation?.*')
c.sendline('')
- c.expect(op_mode_prompt)
+ c.expect('\nInstallation will delete all data on the drive. Continue?.*')
+ c.sendline('y')
+ c.expect('\nWould you like to use all the free space on the drive?.*')
+ c.sendline('y')
log.info('system installed, shutting down')
@@ -457,7 +444,7 @@ try:
c.expect(op_mode_prompt)
log.info('Add member to RAID1 (md0)')
- c.sendline('add raid md0 by-id member drive-hd1-part1')
+ c.sendline('add raid md0 by-id member drive-hd1-part3')
c.expect(op_mode_prompt)
log.info('Now we need to wait for re-sync to complete')