Changeset 41672 in vbox
- Timestamp:
- Jun 12, 2012 7:20:37 PM (13 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxadd-service.sh
r38810 r41672 118 118 119 119 if [ "$system" = "gentoo" ]; then 120 . /sbin/functions.sh 120 if [ -f /sbin/functions.sh ]; then 121 . /sbin/functions.sh 122 elif [ -f /etc/init.d/functions.sh ]; then 123 . /etc/init.d/functions.sh 124 fi 121 125 daemon() { 122 126 start-stop-daemon --start --exec $1 -- $2 -
trunk/src/VBox/Installer/linux/vboxballoonctrl-service.sh.in
r36688 r41672 157 157 158 158 if [ "$system" = "gentoo" ]; then 159 . /sbin/functions.sh 159 if [ -f /sbin/functions.sh ]; then 160 . /sbin/functions.sh 161 elif [ -f /etc/init.d/functions.sh ]; then 162 . /etc/init.d/functions.sh 163 fi 160 164 start_daemon() { 161 165 usr="$1" -
trunk/src/VBox/Installer/linux/vboxweb-service.sh.in
r41369 r41672 159 159 160 160 if [ "$system" = "gentoo" ]; then 161 . /sbin/functions.sh 161 if [ -f /sbin/functions.sh ]; then 162 . /sbin/functions.sh 163 elif [ -f /etc/init.d/functions.sh ]; then 164 . /etc/init.d/functions.sh 165 fi 162 166 start_daemon() { 163 167 usr="$1"
Note:
See TracChangeset
for help on using the changeset viewer.