VirtualBox

source: vbox/trunk/src/VBox/Installer/darwin/VirtualBox_mpkg/checkforrunningvms@ 41883

Last change on this file since 41883 was 31673, checked in by vboxsync, 14 years ago

Installer-OSX: change headers

  • Property svn:executable set to *
File size: 759 bytes
Line 
1#!/bin/sh
2
3#
4# Copyright (C) 2008-2010 Oracle Corporation
5#
6# This file is part of VirtualBox Open Source Edition (OSE), as
7# available from http://www.virtualbox.org. This file is free software;
8# you can redistribute it and/or modify it under the terms of the GNU
9# General Public License (GPL) as published by the Free Software
10# Foundation, in version 2 as it comes in the "COPYING" file of the
11# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
12# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
13#
14
15GREP=/usr/bin/grep
16PS=/bin/ps
17
18RESULT=0
19
20# Check if there are running vms
21PROCS=`${PS} -e | ${GREP} -E "VirtualBoxVM.*startvm|VBoxNetDHCP" | ${GREP} -v grep`
22if [ "${PROCS}x" != "x" ]; then
23 RESULT=1;
24fi
25
26exit $RESULT
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette