Changeset 44086 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Dec 11, 2012 7:31:53 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82601
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/install_service/init_template.sh
r44081 r44086 209 209 binary="${1}" 210 210 shift 211 ps -p "${@}" -f 2>/dev/null | grep "${binary}" >/dev/null 211 case "`ps -p "${@}" -f 2>/dev/null`" in *"${binary}"*) 212 return 0;; 213 esac 214 return 1 212 215 } 213 216
Note:
See TracChangeset
for help on using the changeset viewer.