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 |
|
---|
15 | GREP=/usr/bin/grep
|
---|
16 | PS=/bin/ps
|
---|
17 |
|
---|
18 | RESULT=0
|
---|
19 |
|
---|
20 | # Check if there are running vms
|
---|
21 | PROCS=`${PS} -e | ${GREP} -E "VirtualBoxVM.*startvm|VBoxNetDHCP" | ${GREP} -v grep`
|
---|
22 | if [ "${PROCS}x" != "x" ]; then
|
---|
23 | RESULT=1;
|
---|
24 | fi
|
---|
25 |
|
---|
26 | exit $RESULT
|
---|
Note:
See
TracBrowser
for help on using the repository browser.