File: 81-install-modules-init-tools

package info (click to toggle)
xen-tools 4.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 1,476 kB
  • sloc: perl: 4,942; sh: 1,690; makefile: 268
file content (44 lines) | stat: -rwxr-xr-x 885 bytes parent folder | download | duplicates (6)
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
#!/bin/sh
#
#  Ensure that either modules-init-tools or kmod is setup.
#
#  This is required in most setups.  But even if it isn't required it
# can't really do anything bad; just waste a bit of space.
#

prefix=$1



#
#  Source our common functions
#
if [ -e /usr/share/xen-tools/common.sh ]; then
    . /usr/share/xen-tools/common.sh
else
    . ./hooks/common.sh
fi


#
# Log our start
#
logMessage Script $0 starting

#
#  Install either kmod or module-init-tools package.
#
if chroot ${prefix} /usr/bin/apt-cache show module-init-tools >/dev/null 2>/dev/null; then
    if chroot ${prefix} /usr/bin/apt-cache show module-init-tools | fgrep -qi transitional; then
        installDebianPackage ${prefix} kmod
    else
        installDebianPackage ${prefix} module-init-tools
    fi
else
    installDebianPackage ${prefix} kmod
fi

#
#  Log our finish
#
logMessage Script $0 finished