diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-09-09 20:09:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-09-09 20:09:35 +0200 |
| commit | 18a550b7f857bdea5eb84e1553664bd203173566 (patch) | |
| tree | 87e1003e1a2cade19c06bfff48265c28b8f031e8 /scripts | |
| parent | ef1ee912347e5fa65ca4b20c2de0e695c2150b60 (diff) | |
| parent | c598316aa436d682999a710446edb4ef504a6e56 (diff) | |
| download | vyos-build-18a550b7f857bdea5eb84e1553664bd203173566.tar.gz vyos-build-18a550b7f857bdea5eb84e1553664bd203173566.zip | |
Merge pull request #1288 from c-po/live-boot-defork
live-boot: T5475: replace the forked live-boot package with Debian's
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/check-qemu-install | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 4ad340fe..a212d8b9 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -1079,7 +1079,9 @@ 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?.*') + # Creating the RAID array and the subsequent update-initramfs regularly + # take longer than the default expect timeout + c.expect('\nWhich file would you like as boot config?.*', timeout=300) c.sendline('') else: c.expect('\nWhich one should be used for installation?.*') |
