VirtualBox

source: vbox/trunk/debian/prerm@ 94521

Last change on this file since 94521 was 82441, checked in by vboxsync, 4 years ago

Config: disable PCI passthrough
debian: big resync with files in src/VBox/Installer/Linux/debian, this must have been broken for years
doc: mention dropping of PCI passthrough
src/VBox/Installer/linux: adapt to handle no longer present vboxpci.ko (without completely ripping it out)

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
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
25rm -f /etc/udev/rules.d/60-vboxdrv.rules
26rm -f /etc/vbox/license_agreed
27rm -f /etc/vbox/module_not_compiled
28
29# defaults
30[ -r /etc/default/virtualbox ] && . /etc/default/virtualbox
31
32. /usr/share/debconf/confmodule
33db_version 2.0
34db_capb backup
35
36if ! /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
43fi
44
45#DEBHELPER#
46
47exit 0
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use