Add a sleep to the bhyve management script to hopefully avoid bad states.

This commit is contained in:
Tom Alexander
2023-08-13 18:01:16 -04:00
parent e7b4bb9a4b
commit bfee369ad8

View File

@@ -46,7 +46,7 @@ function cleanup {
}
vms=()
for sig in EXIT INT QUIT HUP TERM; do
trap "set +e; cleanup" "$sig"
trap "set +e; sleep 10; cleanup" "$sig"
done
function die {