You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ! command -v firecracker > /dev/null 2>&1; then
echo -e "${BOLD}Error${NORMAL}: 'firecracker' not found. Local tests will not work." >&2
exit 1
fi
# Check for tap0
if ! ip link show tap0 > /dev/null 2>&1; then
echo -e "${BOLD}Warning${NORMAL}: tap device 'tap0' not found. VM will be started without network access. Run 'BareMetal-Firecracker/scripts/mkbr0.sh' to enable it." >&2
fi
# Start the VM via Firecracker
./baremetal.sh start "$@"
# Check for 'screen`. If found attach to it's session - Otherwise sleep for 15 seconds