mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 10:32:10 +00:00
15 lines
390 B
Text
15 lines
390 B
Text
|
#!/bin/bash
|
||
|
# Copyright 2021 The Chromium OS Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
#
|
||
|
# Executes a command in the VM once it is available.
|
||
|
|
||
|
if ! timeout --foreground 180s ${0%/*}/wait_for_vm; then
|
||
|
echo ""
|
||
|
echo "Timeout while waiting for VM. Check 'screen -r vm'."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
ssh vm $@
|