VirtualBox

source: vbox/trunk/src/VBox/Installer/linux/uninstall.sh@ 42321

Last change on this file since 42321 was 42119, checked in by vboxsync, 12 years ago

Installer/linux: autostart service integration

  • Property svn:eol-style set to LF
File size: 5.8 KB
Line 
1#!/bin/sh
2#
3# Oracle VM VirtualBox
4# VirtualBox linux uninstallation script
5
6#
7# Copyright (C) 2009-2010 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17
18. `dirname $0`/routines.sh
19
20if [ -z "$ro_LOG_FILE" ]; then
21 create_log "/var/log/vbox-uninstall.log"
22fi
23
24if [ -z "VBOX_NO_UNINSTALL_MESSAGE" ]; then
25 info "Uninstalling VirtualBox"
26 log "Uninstalling VirtualBox"
27 log ""
28fi
29
30check_root
31
32[ -z "$DKMS" ] && DKMS=`which dkms 2> /dev/null`
33[ -z "$CONFIG_DIR" ] && CONFIG_DIR="/etc/vbox"
34[ -z "$CONFIG" ] && CONFIG="vbox.cfg"
35[ -z "$CONFIG_FILES" ] && CONFIG_FILES="filelist"
36[ -z "$DEFAULT_FILES" ] && DEFAULT_FILES=`pwd`/deffiles
37
38# Find previous installation
39if [ -r $CONFIG_DIR/$CONFIG ]; then
40 . $CONFIG_DIR/$CONFIG
41 PREV_INSTALLATION=$INSTALL_DIR
42fi
43
44# Remove previous installation
45if [ "$PREV_INSTALLATION" = "" ]; then
46 log "Unable to find a VirtualBox installation, giving up."
47 abort "Couldn't find a VirtualBox installation to uninstall."
48fi
49
50# Stop the ballon control service
51stop_init_script vboxballoonctrl-service
52# Stop the autostart service
53stop_init_script vboxautostart-service
54# Stop the web service
55stop_init_script vboxweb-service
56# Do this check here after we terminated the web service
57check_running
58# Terminate VBoxNetDHCP if running
59terminate_proc VBoxNetDHCP
60delrunlevel vboxballoonctrl-service > /dev/null 2>&1
61remove_init_script vboxballoonctrl-service
62delrunlevel vboxautostart-service > /dev/null 2>&1
63remove_init_script vboxautostart-service
64delrunlevel vboxweb-service > /dev/null 2>&1
65remove_init_script vboxweb-service
66# Stop kernel module and uninstall runlevel script
67stop_init_script vboxdrv
68delrunlevel vboxdrv > /dev/null 2>&1
69remove_init_script vboxdrv
70# Stop host networking and uninstall runlevel script (obsolete)
71stop_init_script vboxnet
72delrunlevel vboxnet > /dev/null 2>&1
73remove_init_script vboxnet
74# Remove kernel module installed
75if [ -n "$DKMS" ]; then
76 $DKMS remove -m vboxhost -v $INSTALL_VER --all > /dev/null 2>&1
77fi
78if [ -z "$VBOX_DONT_REMOVE_OLD_MODULES" ]; then
79 find /lib/modules/`uname -r` -name "vboxdrv\.*" 2>/dev/null|xargs rm -f 2> /dev/null
80 find /lib/modules/`uname -r` -name "vboxnetflt\.*" 2>/dev/null|xargs rm -f 2> /dev/null
81 find /lib/modules/`uname -r` -name "vboxnetadp\.*" 2>/dev/null|xargs rm -f 2> /dev/null
82 # Remove directories we have installed to in the past
83 find /lib/modules/`uname -r` -name vbox\* 2>/dev/null|xargs rmdir -p 2> /dev/null
84 find /lib/modules/`uname -r` -name misc\* 2>/dev/null|xargs rmdir -p 2> /dev/null
85 rm -f /usr/src/vboxhost-$INSTALL_VER 2> /dev/null
86 rm -f /usr/src/vboxdrv-$INSTALL_VER 2> /dev/null
87 rm -f /usr/src/vboxnetflt-$INSTALL_VER 2> /dev/null
88 rm -f /usr/src/vboxnetadp-$INSTALL_VER 2> /dev/null
89fi
90
91# Remove symlinks
92rm -f \
93 /usr/bin/VirtualBox \
94 /usr/bin/VBoxManage \
95 /usr/bin/VBoxSDL \
96 /usr/bin/VBoxVRDP \
97 /usr/bin/VBoxHeadless \
98 /usr/bin/VBoxBalloonCtrl \
99 /usr/bin/VBoxAutostart \
100 /usr/bin/VBoxNetDHCP \
101 /usr/bin/vboxwebsrv \
102 /usr/bin/VBoxAddIF \
103 /usr/bin/VBoxDeleteIf \
104 /usr/bin/VBoxTunctl \
105 /usr/bin/virtualbox \
106 /usr/share/pixmaps/VBox.png \
107 /usr/share/pixmaps/virtualbox.png \
108 /usr/share/applications/virtualbox.desktop \
109 /usr/share/mime/packages/virtualbox.xml \
110 /usr/bin/rdesktop-vrdp \
111 /usr/bin/virtualbox \
112 /usr/bin/vboxmanage \
113 /usr/bin/vboxsdl \
114 /usr/bin/vboxheadless \
115 $PREV_INSTALLATION/components/VBoxVMM.so \
116 $PREV_INSTALLATION/components/VBoxREM.so \
117 $PREV_INSTALLATION/components/VBoxRT.so \
118 $PREV_INSTALLATION/components/VBoxDDU.so \
119 $PREV_INSTALLATION/components/VBoxXPCOM.so \
120 2> /dev/null
121
122# Remove udev description file
123if [ -f /etc/udev/rules.d/60-vboxdrv.rules ]; then
124 rm -f /etc/udev/rules.d/60-vboxdrv.rules 2> /dev/null
125fi
126if [ -f /etc/udev/rules.d/10-vboxdrv.rules ]; then
127 rm -f /etc/udev/rules.d/10-vboxdrv.rules 2> /dev/null
128fi
129
130# Remove our USB device tree
131rm -rf /dev/vboxusb 2> /dev/null
132
133cwd=`pwd`
134if [ -f $PREV_INSTALLATION/src/Makefile ]; then
135 cd $PREV_INSTALLATION/src
136 make clean > /dev/null 2>&1
137fi
138if [ -f $PREV_INSTALLATION/src/vboxdrv/Makefile ]; then
139 cd $PREV_INSTALLATION/src/vboxdrv
140 make clean > /dev/null 2>&1
141fi
142if [ -f $PREV_INSTALLATION/src/vboxnetflt/Makefile ]; then
143 cd $PREV_INSTALLATION/src/vboxnetflt
144 make clean > /dev/null 2>&1
145fi
146if [ -f $PREV_INSTALLATION/src/vboxnetadp/Makefile ]; then
147 cd $PREV_INSTALLATION/src/vboxnetadp
148 make clean > /dev/null 2>&1
149fi
150cd $PREV_INSTALLATION
151if [ -r $CONFIG_DIR/$CONFIG_FILES ]; then
152 rm -f `cat $CONFIG_DIR/$CONFIG_FILES` 2> /dev/null
153elif [ -n "$DEFAULT_FILES" -a -r "$DEFAULT_FILES" ]; then
154 DEFAULT_FILE_NAMES=""
155 . $DEFAULT_FILES
156 for i in "$DEFAULT_FILE_NAMES"; do
157 rm -f $i 2> /dev/null
158 done
159fi
160for file in `find $PREV_INSTALLATION 2> /dev/null`; do
161 rmdir -p $file 2> /dev/null
162done
163cd $cwd
164mkdir -p $PREV_INSTALLATION 2> /dev/null # The above actually removes the current directory and parents!
165rmdir $PREV_INSTALLATION 2> /dev/null
166rm -r $CONFIG_DIR/$CONFIG 2> /dev/null
167
168if [ -z "$VBOX_NO_UNINSTALL_MESSAGE" ]; then
169 rm -r $CONFIG_DIR/$CONFIG_FILES 2> /dev/null
170 rmdir $CONFIG_DIR 2> /dev/null
171 [ -n "$INSTALL_REV" ] && INSTALL_REV=" r$INSTALL_REV"
172 info "VirtualBox $INSTALL_VER$INSTALL_REV has been removed successfully."
173 log "Successfully $INSTALL_VER$INSTALL_REV removed VirtualBox."
174fi
175update-mime-database /usr/share/mime >/dev/null 2>&1
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette