1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

set boot order

This commit is contained in:
Jason N. 2024-02-29 19:39:58 -05:00
parent 3885574eab
commit e1a6ef1e52

View file

@ -183,7 +183,7 @@ jobs:
run: | run: |
mkfifo vm.stdout mkfifo vm.stdout
mkfifo vm.stdin mkfifo vm.stdin
qemu-system-x86_64 --name "Anaconda" -m 4096 -cpu kvm64 -display none -cdrom test.iso -drive file=disk.qcow2 -serial telnet:localhost:4321,server,nowait & qemu-system-x86_64 -name "Anaconda" -boot d -m 4096 -cpu kvm64 -display none -cdrom test.iso -drive file=disk.qcow2 -serial telnet:localhost:4321,server,nowait &
timeout 1m bash -c "while ! (echo > /dev/tcp/127.0.0.1/4321); do sleep 0.1; done" timeout 1m bash -c "while ! (echo > /dev/tcp/127.0.0.1/4321); do sleep 0.1; done"
nc localhost 4321 > vm.stdout < vm.stdin & nc localhost 4321 > vm.stdout < vm.stdin &