~ubuntu-branches/ubuntu/precise/virtualbox/precise-updates

« back to all changes in this revision

Viewing changes to src/VBox/Additions/linux/installer/vboxadd-service.sh

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-10-17 23:23:09 UTC
  • mfrom: (3.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20111017232309-kzm6841lzk61ranj
Tags: 4.1.4-dfsg-1
* New upstream release.
  - Fixes missing icons when using pt_BR locale. (Closes: #507188)
  - Fixes guest additions download url. (Closes: #637349; LP: #840668)
* Refresh patches.
* Drop the vboxmouse x11 driver. The mouse integration is now completely
  handled by the kernel module.
* Restrict dh_pycentral to the virtualbox binary package.
* Merge changes from the Ubuntu package but use them only when built
  on Ubuntu:
  - Add an Apport hook.
  - Add vboxguest modalias to the package control field.
* Pass KBUILD_VERBOSE=2 to kmk.
* Add 36-fix-text-mode.patch to fix text mode when using the vboxvideo driver.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
    PIDFILE="/var/lock/subsys/vboxadd-service"
34
34
elif [ -f /etc/SuSE-release ]; then
35
35
    system=suse
36
 
    PIDFILE="/var/lock/subsys/vboxadd-service"
 
36
    PIDFILE="/var/run/vboxadd-service"
37
37
elif [ -f /etc/debian_version ]; then
38
38
    system=debian
39
39
    PIDFILE="/var/run/vboxadd-service"
170
170
 
171
171
fi
172
172
 
173
 
if [ "$system" = "slackware" ]; then
 
173
if [ "$system" = "slackware" -o "$system" = "other" ]; then
174
174
    daemon() {
175
175
        $1 $2
176
176
    }
217
217
    }
218
218
fi
219
219
 
220
 
if [ "$system" = "other" ]; then
221
 
    fail_msg() {
222
 
        echo " ...fail!"
223
 
    }
224
 
 
225
 
    succ_msg() {
226
 
        echo " ...done."
227
 
    }
228
 
 
229
 
    begin() {
230
 
        echo -n "$1"
231
 
    }
232
 
fi
233
 
 
234
220
binary=/usr/sbin/VBoxService
235
221
 
236
222
testbinary() {