6 lines
116 B
Bash
Executable file
6 lines
116 B
Bash
Executable file
#!/bin/sh
|
|
# Suspend VMs — stop them gracefully.
|
|
set -eu
|
|
. "$(dirname "$0")/env.sh"
|
|
|
|
exec "$SCRIPT_DIR/vm/stop.sh"
|