7 lines
162 B
Bash
Executable file
7 lines
162 B
Bash
Executable file
#!/bin/sh
|
|
# Stop both VMs gracefully.
|
|
set -eu
|
|
. "$(dirname "$0")/env.sh"
|
|
|
|
"$QEMU_VM" instance stop "$PROXY_VM" || true
|
|
"$QEMU_VM" instance stop "$IDP_VM" || true
|