Changeset 32582 in vbox for trunk/src/VBox/Installer/solaris
- Timestamp:
- Sep 17, 2010 9:18:56 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/vboxconfig.sh
r32549 r32582 646 646 procname=$1 647 647 procpid=`ps -eo pid,fname | grep $PROC_NAME | grep -v grep | awk '{ print $1 }'` 648 if test ! -z " procpid" && test "procpid" -ge 0; then648 if test ! -z "$procpid" && test "$procpid" -ge 0; then 649 649 $BIN_PKILL "$procname" 650 650 sleep 2 651 651 procpid=`ps -eo pid,fname | grep $PROC_NAME | grep -v grep | awk '{ print $1 }'` 652 if test ! -z " procpid" && test "procpid" -ge 0; then652 if test ! -z "$procpid" && test "$procpid" -ge 0; then 653 653 subprint "Terminating: $procname ...FAILED!" 654 654 if test "$fatal" = "$FATALOP"; then
Note:
See TracChangeset
for help on using the changeset viewer.