1 | #!/bin/sh
|
---|
2 |
|
---|
3 | #
|
---|
4 | # Copyright (C) 2006-2012 Oracle Corporation
|
---|
5 | #
|
---|
6 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
7 | # available from http://www.virtualbox.org. This file is free software;
|
---|
8 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
9 | # General Public License (GPL) as published by the Free Software
|
---|
10 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
11 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
12 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
13 | #
|
---|
14 |
|
---|
15 | # we can be called with the following arguments (6.5 of Debian policy):
|
---|
16 | # remove: (our version): remove our package
|
---|
17 | # purge: (our version): purge our package
|
---|
18 | # upgrade: (our version): upgrade to a new version
|
---|
19 | # failed-upgrade (old version): failed to upgrade to a new version
|
---|
20 | # abort-install (our version): aborted install
|
---|
21 | # abort-upgrade (old version): aborted upgrade
|
---|
22 |
|
---|
23 | if [ "$1" = "purge" -a ! -f /etc/init.d/vboxdrv ] ; then
|
---|
24 | update-rc.d vboxdrv remove >/dev/null || exit $?
|
---|
25 | fi
|
---|
26 | if [ "$1" = "purge" -a ! -f /etc/init.d/vboxnet ] ; then
|
---|
27 | update-rc.d vboxnet remove >/dev/null || exit $?
|
---|
28 | fi
|
---|
29 | if [ "$1" = "purge" -a ! -f /etc/init.d/vboxweb-service ] ; then
|
---|
30 | update-rc.d vboxweb-service remove >/dev/null || exit $?
|
---|
31 | fi
|
---|
32 | if [ "$1" = "purge" -a ! -f /etc/init.d/vboxballoonctrl-service ] ; then
|
---|
33 | update-rc.d vboxballoonctrl-service remove >/dev/null || exit $?
|
---|
34 | fi
|
---|
35 |
|
---|
36 | # remove installed extension packs
|
---|
37 | if [ "$1" = "purge" ]; then
|
---|
38 | rm -rf /usr/lib/virtualbox/ExtensionPacks/*
|
---|
39 | fi
|
---|
40 |
|
---|
41 | #DEBHELPER#
|
---|
42 |
|
---|
43 | exit 0
|
---|