VirtualBox

source: vbox/trunk/debian/postinst.in@ 46420

Last change on this file since 46420 was 44866, checked in by vboxsync, 12 years ago

.deb fix

File size: 5.7 KB
Line 
1#!/bin/sh
2#
3# Copyright (C) 2006-2012 Oracle Corporation
4#
5# This file is part of VirtualBox Open Source Edition (OSE), as
6# available from http://www.virtualbox.org. This file is free software;
7# you can redistribute it and/or modify it under the terms of the GNU
8# General Public License (GPL) as published by the Free Software
9# Foundation, in version 2 as it comes in the "COPYING" file of the
10# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
11# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
12#
13
14# we can be called with the following arguments (6.5 of Debian policy):
15# configure: (our version): installing/configuring new version
16# abort-upgrade: (old version): upgrading to a new version failed
17# abort-remove: (our version): removing this package failed
18# abort-deconfigure: (our version): error during resolving conflicts
19
20#include installer-common.sh
21
22LOG="/var/log/vbox-install.log"
23
24# defaults
25[ -r /etc/default/virtualbox ] && . /etc/default/virtualbox
26
27if [ "$1" = "configure" ]; then
28
29 # for debconf
30 . /usr/share/debconf/confmodule
31 db_version 2.0
32
33 # remove old cruft
34 if [ -f /etc/init.d/vboxdrv.sh ]; then
35 echo "Found old version of /etc/init.d/vboxdrv.sh, removing."
36 rm /etc/init.d/vboxdrv.sh
37 update-rc.d vboxdrv.sh remove >/dev/null
38 fi
39 if [ -f /etc/vbox/vbox.cfg ]; then
40 echo "Found old version of /etc/vbox/vbox.cfg, removing."
41 rm /etc/vbox/vbox.cfg
42 fi
43
44 # create users groups (disable with INSTALL_NO_GROUP=1 in /etc/default/virtualbox)
45 if [ "$INSTALL_NO_GROUP" != "1" ]; then
46 db_input low virtualbox/group-vboxusers || true
47 db_go || true
48 addgroup --system vboxusers || true
49 fi
50
51 # install udev rule (disable with INSTALL_NO_UDEV=1 in
52 # /etc/default/virtualbox) and /dev/vboxdrv and /dev/vboxusb/*/* device nodes
53 install_device_node_setup root 0600 /usr/share/virtualbox "${usb_group}"
54
55 # The starters need to be Suid root. They drop the privileges before starting
56 # the real frontend.
57 if ! dpkg-statoverride --list /usr/lib/virtualbox/VirtualBox > /dev/null 2>&1; then
58 chmod 4511 /usr/lib/virtualbox/VirtualBox
59 fi
60 if ! dpkg-statoverride --list /usr/lib/virtualbox/VBoxHeadless > /dev/null 2>&1; then
61 chmod 4511 /usr/lib/virtualbox/VBoxHeadless
62 fi
63 if ! dpkg-statoverride --list /usr/lib/virtualbox/VBoxSDL > /dev/null 2>&1; then
64 chmod 4511 /usr/lib/virtualbox/VBoxSDL
65 fi
66 if ! dpkg-statoverride --list /usr/lib/virtualbox/VBoxNetDHCP > /dev/null 2>&1; then
67 chmod 4511 /usr/lib/virtualbox/VBoxNetDHCP
68 fi
69 if ! dpkg-statoverride --list /usr/lib/virtualbox/VBoxNetAdpCtl > /dev/null 2>&1; then
70 chmod 4511 /usr/lib/virtualbox/VBoxNetAdpCtl
71 fi
72 if [ -x /usr/lib/virtualbox/VBoxVolInfo ]; then
73 if ! dpkg-statoverride --list /usr/lib/virtualbox/VBoxVolInfo > /dev/null 2>&1; then
74 chmod 4511 /usr/lib/virtualbox/VBoxVolInfo
75 fi
76 fi
77
78 # if INSTALL_NO_VBOXDRV is set to 1, remove all shipped modules
79 if [ "$INSTALL_NO_VBOXDRV" = "1" ]; then
80 rm -f /lib/modules/*/misc/vboxdrv.ko
81 rm -f /lib/modules/*/misc/vboxnetflt.ko
82 rm -f /lib/modules/*/misc/vboxnetadp.ko
83 fi
84
85fi # $1 = "configure"
86
87#DEBHELPER#
88
89if [ "$1" = "configure" ]; then
90 # Start vboxdrv/vboxballoonctrl/vboxweb-service manually as we use our own error handling in postrm
91 if [ -x "/etc/init.d/vboxdrv" ]; then
92 update-rc.d vboxdrv defaults >/dev/null
93
94 BUILD_MODULES=0
95 REGISTER_MODULES=1
96 # Disable module compilation with INSTALL_NO_VBOXDRV=1 in /etc/default/virtualbox
97 if [ ! -f /lib/modules/`uname -r`/misc/vboxdrv.ko ]; then
98 REGISTER_MODULES=0
99 if [ "$INSTALL_NO_VBOXDRV" != "1" ]; then
100 db_get virtualbox/module-compilation-allowed
101 if [ "$RET" = "false" ]; then
102 cat << EOF
103Unable to find a precompiled module for the current kernel
104though module compilation denied by debconf setting.
105EOF
106 else
107 db_input low virtualbox/module-compilation-allowed || true
108 db_go || true
109 db_get virtualbox/module-compilation-allowed
110 if [ "$RET" = "true" ]; then
111 BUILD_MODULES=1
112 fi
113 fi
114 fi
115 fi
116
117 if [ $BUILD_MODULES -eq 1 ]; then
118 if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
119 invoke-rc.d vboxdrv setup || true
120 else
121 /etc/init.d/vboxdrv setup || true
122 fi
123 else
124 # shipped modules found, register sources at DKMS anyway
125 if lsmod | grep -q "vboxdrv[^_-]"; then
126 /etc/init.d/vboxdrv stop || true
127 fi
128 if [ $REGISTER_MODULES -eq 1 ]; then
129 DKMS=`which dkms 2>/dev/null`
130 if [ -n "$DKMS" ]; then
131 $DKMS add -m vboxhost -v %VER% > /dev/null 2>&1 || true
132 fi
133 fi
134 if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
135 invoke-rc.d vboxdrv start || exit $?
136 else
137 /etc/init.d/vboxdrv start || exit $?
138 fi
139 fi
140 fi
141 if [ -x "/etc/init.d/vboxballoonctrl-service" ]; then
142 update-rc.d vboxballoonctrl-service defaults >/dev/null
143 if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
144 invoke-rc.d vboxballoonctrl-service start || exit $?
145 else
146 /etc/init.d/vboxballoonctrl-service start || exit $?
147 fi
148 fi
149 if [ -x "/etc/init.d/vboxautostart-service" ]; then
150 update-rc.d vboxautostart-service defaults >/dev/null
151 if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
152 invoke-rc.d vboxautostart-service start || exit $?
153 else
154 /etc/init.d/vboxautostart-service start || exit $?
155 fi
156 fi
157 if [ -x "/etc/init.d/vboxweb-service" ]; then
158 update-rc.d vboxweb-service defaults >/dev/null
159 if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
160 invoke-rc.d vboxweb-service start || exit $?
161 else
162 /etc/init.d/vboxweb-service start || exit $?
163 fi
164 fi
165
166fi # $1 = "configure"
167
168exit 0
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