VirtualBox

source: vbox/trunk/debian/postrm@ 78203

Last change on this file since 78203 was 44528, checked in by vboxsync, 11 years ago

header (C) fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.6 KB
Line 
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
23if [ "$1" = "purge" -a ! -f /etc/init.d/vboxdrv ] ; then
24 update-rc.d vboxdrv remove >/dev/null || exit $?
25fi
26if [ "$1" = "purge" -a ! -f /etc/init.d/vboxnet ] ; then
27 update-rc.d vboxnet remove >/dev/null || exit $?
28fi
29if [ "$1" = "purge" -a ! -f /etc/init.d/vboxweb-service ] ; then
30 update-rc.d vboxweb-service remove >/dev/null || exit $?
31fi
32if [ "$1" = "purge" -a ! -f /etc/init.d/vboxballoonctrl-service ] ; then
33 update-rc.d vboxballoonctrl-service remove >/dev/null || exit $?
34fi
35
36# remove installed extension packs
37if [ "$1" = "purge" ]; then
38 rm -rf /usr/lib/virtualbox/ExtensionPacks/*
39fi
40
41#DEBHELPER#
42
43exit 0
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use