summaryrefslogtreecommitdiff
path: root/debian/postinst.in
blob: 01a16382e87a292758ae15aea1260fa13ebafc44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#!/bin/sh
#
# Copyright (C) 2006-2012 Oracle Corporation
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
# you can redistribute it and/or modify it under the terms of the GNU
# General Public License (GPL) as published by the Free Software
# Foundation, in version 2 as it comes in the "COPYING" file of the
# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
#

# we can be called with the following arguments (6.5 of Debian policy):
#  configure:         (our version): installing/configuring new version
#  abort-upgrade:     (old version): upgrading to a new version failed
#  abort-remove:      (our version): removing this package failed
#  abort-deconfigure: (our version): error during resolving conflicts

#include installer-common.sh

LOG="/var/log/vbox-install.log"

# defaults
[ -r /etc/default/virtualbox ] && . /etc/default/virtualbox

if [ "$1" = "configure" ]; then

  # for debconf
  . /usr/share/debconf/confmodule
  db_version 2.0

  # remove old cruft
  if [ -f /etc/init.d/vboxdrv.sh ]; then
    echo "Found old version of /etc/init.d/vboxdrv.sh, removing."
    rm /etc/init.d/vboxdrv.sh
    update-rc.d vboxdrv.sh remove >/dev/null
  fi
  if [ -f /etc/vbox/vbox.cfg ]; then
    echo "Found old version of /etc/vbox/vbox.cfg, removing."
    rm /etc/vbox/vbox.cfg
  fi

  # create users groups (disable with INSTALL_NO_GROUP=1 in /etc/default/virtualbox)
  if [ "$INSTALL_NO_GROUP" != "1" ]; then
    db_input low virtualbox/group-vboxusers || true
    db_go || true
    addgroup --system vboxusers || true
  fi

  # install udev rule (disable with INSTALL_NO_UDEV=1 in
  # /etc/default/virtualbox) and /dev/vboxdrv and /dev/vboxusb/*/* device nodes
  install_device_node_setup root 0600 /usr/share/virtualbox "${usb_group}"

  # The starters need to be Suid root. They drop the privileges before starting
  # the real frontend.
  if ! dpkg-statoverride --list /usr/lib/virtualbox/VirtualBox > /dev/null 2>&1; then
    chmod 4511 /usr/lib/virtualbox/VirtualBox
  fi
  if ! dpkg-statoverride --list /usr/lib/virtualbox/VBoxHeadless > /dev/null 2>&1; then
    chmod 4511 /usr/lib/virtualbox/VBoxHeadless
  fi
  if ! dpkg-statoverride --list /usr/lib/virtualbox/VBoxSDL > /dev/null 2>&1; then
    chmod 4511 /usr/lib/virtualbox/VBoxSDL
  fi
  if ! dpkg-statoverride --list /usr/lib/virtualbox/VBoxNetDHCP > /dev/null 2>&1; then
    chmod 4511 /usr/lib/virtualbox/VBoxNetDHCP
  fi
  if ! dpkg-statoverride --list /usr/lib/virtualbox/VBoxNetNAT > /dev/null 2>&1; then
    chmod 4511 /usr/lib/virtualbox/VBoxNetNAT
  fi
  if ! dpkg-statoverride --list /usr/lib/virtualbox/VBoxNetAdpCtl > /dev/null 2>&1; then
    chmod 4511 /usr/lib/virtualbox/VBoxNetAdpCtl
  fi
  if [ -x /usr/lib/virtualbox/VBoxVolInfo ]; then
    if ! dpkg-statoverride --list /usr/lib/virtualbox/VBoxVolInfo > /dev/null 2>&1; then
      chmod 4511 /usr/lib/virtualbox/VBoxVolInfo
    fi
  fi

  # if INSTALL_NO_VBOXDRV is set to 1, remove all shipped modules
  if [ "$INSTALL_NO_VBOXDRV" = "1" ]; then
    rm -f /lib/modules/*/misc/vboxdrv.ko
    rm -f /lib/modules/*/misc/vboxnetflt.ko
    rm -f /lib/modules/*/misc/vboxnetadp.ko
  fi

fi # $1 = "configure"

#DEBHELPER#

if [ "$1" = "configure" ]; then
  # Start vboxdrv/vboxballoonctrl/vboxweb-service manually as we use our own error handling in postrm
  if [ -x "/etc/init.d/vboxdrv" ]; then
    update-rc.d vboxdrv defaults >/dev/null

    BUILD_MODULES=0
    REGISTER_MODULES=1
    # Disable module compilation with INSTALL_NO_VBOXDRV=1 in /etc/default/virtualbox
    if [ ! -f /lib/modules/`uname -r`/misc/vboxdrv.ko ]; then
      REGISTER_MODULES=0
      if [ "$INSTALL_NO_VBOXDRV" != "1" ]; then
        db_get virtualbox/module-compilation-allowed
        if [ "$RET" = "false" ]; then
          cat << EOF
Unable to find a precompiled module for the current kernel
though module compilation denied by debconf setting.
EOF
        else
          db_input low virtualbox/module-compilation-allowed || true
          db_go || true
          db_get virtualbox/module-compilation-allowed
          if [ "$RET" = "true" ]; then
            BUILD_MODULES=1
          fi
        fi
      fi
    fi

    if [ $BUILD_MODULES -eq 1 ]; then
      if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
        invoke-rc.d vboxdrv setup || true
      else
        /etc/init.d/vboxdrv setup || true
      fi
    else
      # shipped modules found, register sources at DKMS anyway
      if lsmod | grep -q "vboxdrv[^_-]"; then
        /etc/init.d/vboxdrv stop || true
      fi
      if [ $REGISTER_MODULES -eq 1 ]; then
        DKMS=`which dkms 2>/dev/null`
        if [ -n "$DKMS" ]; then
          $DKMS add -m vboxhost -v %VER% > /dev/null 2>&1 || true
        fi
      fi
      if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
        invoke-rc.d vboxdrv start || exit $?
      else
        /etc/init.d/vboxdrv start || exit $?
      fi
    fi
  fi
  if [ -x "/etc/init.d/vboxballoonctrl-service" ]; then
    update-rc.d vboxballoonctrl-service defaults >/dev/null
    if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
        invoke-rc.d vboxballoonctrl-service start || exit $?
    else
        /etc/init.d/vboxballoonctrl-service start || exit $?
    fi
  fi
  if [ -x "/etc/init.d/vboxautostart-service" ]; then
    update-rc.d vboxautostart-service defaults >/dev/null
    if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
        invoke-rc.d vboxautostart-service start || exit $?
    else
        /etc/init.d/vboxautostart-service start || exit $?
    fi
  fi
  if [ -x "/etc/init.d/vboxweb-service" ]; then
    update-rc.d vboxweb-service defaults >/dev/null
    if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
        invoke-rc.d vboxweb-service start || exit $?
    else
        /etc/init.d/vboxweb-service start || exit $?
    fi
  fi

fi # $1 = "configure"

exit 0