1 | #!/bin/sh
|
---|
2 | # $Id: prerm 82441 2019-12-05 23:16:02Z vboxsync $
|
---|
3 | ## @file
|
---|
4 | # VirtualBox pre-removal.
|
---|
5 | #
|
---|
6 |
|
---|
7 | #
|
---|
8 | # Copyright (C) 2006-2019 Oracle Corporation
|
---|
9 | #
|
---|
10 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | # available from http://www.virtualbox.org. This file is free software;
|
---|
12 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | # General Public License (GPL) as published by the Free Software
|
---|
14 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | #
|
---|
18 |
|
---|
19 | # we can be called with the following arguments (6.5 of Debian policy):
|
---|
20 | # upgrade: (new version): upgrade to a new version
|
---|
21 | # failed-upgrade: (our version): failed to upgrade
|
---|
22 | # remove: (our version): remove this package
|
---|
23 | # deconfigure: (our version): removing conflicting version
|
---|
24 |
|
---|
25 | rm -f /etc/udev/rules.d/60-vboxdrv.rules
|
---|
26 | rm -f /etc/vbox/license_agreed
|
---|
27 | rm -f /etc/vbox/module_not_compiled
|
---|
28 |
|
---|
29 | # defaults
|
---|
30 | [ -r /etc/default/virtualbox ] && . /etc/default/virtualbox
|
---|
31 |
|
---|
32 | . /usr/share/debconf/confmodule
|
---|
33 | db_version 2.0
|
---|
34 | db_capb backup
|
---|
35 |
|
---|
36 | if ! /usr/lib/virtualbox/prerm-common.sh > /dev/null 2>&1; then
|
---|
37 | if [ "$1" != "failed-upgrade" ]; then
|
---|
38 | db_fset virtualbox/old-running seen false || true
|
---|
39 | db_input critical virtualbox/old-running || true
|
---|
40 | db_go || true
|
---|
41 | fi
|
---|
42 | exit 1
|
---|
43 | fi
|
---|
44 |
|
---|
45 | #DEBHELPER#
|
---|
46 |
|
---|
47 | exit 0
|
---|