mirror of
https://github.com/flatcar/scripts.git
synced 2026-02-08 17:21:39 +01:00
Change-Id: Ie80843a7b81a37b41ae19fc33244b5c0b8152282 BUG=chromium-os:10434 TEST=Ran it with full au test harness (still running but already showing promise). Review URL: http://codereview.chromium.org/5988006
25 lines
562 B
Bash
Executable File
25 lines
562 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (c) 2010 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.
|
|
#
|
|
# Simple wrapper scipt to stop a vm specified from a pid file.
|
|
|
|
. "$(dirname $0)/../common.sh"
|
|
. "$(dirname $0)/../lib/cros_vm_lib.sh"
|
|
|
|
set -e
|
|
|
|
# Parse command line.
|
|
FLAGS "$@" || exit 1
|
|
eval set -- "${FLAGS_ARGV}"
|
|
|
|
# Requires pid file to be set.
|
|
if [ -z "${FLAGS_kvm_pid}" ]; then
|
|
die "Must specify file with pid of kvm to kill."
|
|
fi
|
|
|
|
KVM_PID_FILE="${FLAGS_kvm_pid}"
|
|
stop_kvm
|