Changeset 20591 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Jun 15, 2009 12:38:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/checkinstall.sh
r20590 r20591 32 32 # Check if VBoxSVC is currently running 33 33 VBOXSVC_PID=`ps -eo pid,fname | grep VBoxSVC | grep -v grep | awk '{ print $1 }'` 34 if test $VBOXSVC_PID-ge 0; then34 if test ! -z "$VBOXSVC_PID" && test "$VBOXSVC_PID" -ge 0; then 35 35 echo "## VirtualBox's VBoxSVC (pid $VBOXSVC_PID) still appears to be running." 36 36 abort_error
Note:
See TracChangeset
for help on using the changeset viewer.