fix: Delete network on shutdown

This commit is contained in:
Kroese 2023-07-05 13:06:04 +02:00 committed by GitHub
parent 03d333e299
commit 0a2a17724b

View file

@ -50,6 +50,8 @@ _graceful_shutdown() {
echo && echo " Quitting..." echo && echo " Quitting..."
echo 'quit' | nc -q 1 -w 1 localhost "${QEMU_MONPORT}" >/dev/null 2>&1 || true echo 'quit' | nc -q 1 -w 1 localhost "${QEMU_MONPORT}" >/dev/null 2>&1 || true
closeNetwork
return return
} }