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

« back to all changes in this revision

Viewing changes to debian/virtualbox-source.files/postinst.modules.in

  • 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:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
#DEBHELPER#
 
6
 
 
7
case "${1}" in
 
8
        configure)
 
9
                # only restart if VirtualBox isn't running
 
10
                if test -x /etc/init.d/virtualbox && ! pidof VBoxSVC > /dev/null; then
 
11
                        invoke-rc.d virtualbox restart || true
 
12
                fi
 
13
                ;;
 
14
 
 
15
        abort-upgrade|abort-deconfigure|abort-remove)
 
16
 
 
17
                ;;
 
18
 
 
19
        *)
 
20
                echo "${0} called with unknown argument \`${1}'" 1>&2
 
21
                exit 1
 
22
                ;;
 
23
esac