mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 10:32:10 +00:00
22 lines
403 B
Text
22 lines
403 B
Text
|
#!/usr/bin/expect -f
|
||
|
# 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.
|
||
|
set timeout -1
|
||
|
|
||
|
spawn ./start_vm -hdb cloud_init.img
|
||
|
|
||
|
expect "login:"
|
||
|
send "crosvm\r"
|
||
|
|
||
|
expect "Password:"
|
||
|
send "crosvm\r"
|
||
|
|
||
|
expect "$ "
|
||
|
send "cloud-init status --wait\r"
|
||
|
|
||
|
expect "$ "
|
||
|
send "sudo poweroff\r"
|
||
|
|
||
|
expect eof
|