diff options
author | John Estabrook <jestabro@vyos.io> | 2023-09-22 08:59:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-22 08:59:36 -0500 |
commit | 83cdd40b15b9db5eb0c8d7161427c457b3fdd59d (patch) | |
tree | d31f390aa440fe52ee98ea45e823b46a672b51e7 | |
parent | dd9b5886f3b4bf134cb094da5cec860504f2ce2e (diff) | |
parent | ecd3727d634e1546448b8038f299b28a2e71dfcb (diff) | |
download | vyos-build-83cdd40b15b9db5eb0c8d7161427c457b3fdd59d.tar.gz vyos-build-83cdd40b15b9db5eb0c8d7161427c457b3fdd59d.zip |
Merge pull request #419 from jestabro/disk-by-id
smoketest: T5607: adjust for non-deterministic scsi device probing
-rwxr-xr-x | scripts/check-qemu-install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 82c20ed3..72ef4696 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -453,12 +453,12 @@ try: c.expect(op_mode_prompt) log.info('Re-format new RAID member') - c.sendline('format disk sda like sdb') + c.sendline('format by-id disk drive-hd1 like drive-hd2') c.sendline('yes') c.expect(op_mode_prompt) log.info('Add member to RAID1 (md0)') - c.sendline('add raid md0 member sda1') + c.sendline('add raid md0 by-id member drive-hd1-part1') c.expect(op_mode_prompt) log.info('Now we need to wait for re-sync to complete') |