/sbin/discover-pkginstall is in discover 2.1.2-5.1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | #! /bin/sh
# $Progeny$
# Copyright 2002 Hewlett-Packard Company
# Copyright 2004 Progeny Linux Systems, Inc.
# Copyright 2006 Petter Reinholdtsen
#
# Based on discover-modprobe, modified to install debian packages instead
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
set -e
# Make sure the debconf question is asked in a sub-process, to avoid
# locking the debconf database when installing packages.
if [ true = "$DISCOVER_PKGINSTALL_ASKING" ] ; then
. /usr/share/debconf/confmodule
pkglist="`echo $@ | sed 's/ /, /g'`"
db_subst discover/install_hw_packages PACKAGES "$pkglist"
db_set discover/install_hw_packages "$pkglist"
db_fset discover/install_hw_packages seen false
db_input medium discover/install_hw_packages || [ $? -eq 30 ]
db_go
db_get discover/install_hw_packages
db_stop
echo $RET | sed 's/,//g' 1>&8
exit 0
fi
# Too bad we don't have something like sysexits.h for POSIX sh...
EX_USAGE=64
# These defaults are only used if discover-config can not be found.
# This is the case if /usr isn't mounted yet.
sysconfdir=/etc
discover=discover
types="all"
if [ -x /usr/bin/discover-config ]; then
sysconfdir="$(discover-config --sysconfdir)"
fi
if [ -x /sbin/discover ]; then
discover=/sbin/discover
elif [ -x /usr/bin/discover ]; then
discover=/usr/bin/discover
elif [ -x /bin/discover-static ]; then
discover=/bin/discover-static
fi
conf="${sysconfdir}/discover-pkginstall.conf"
[ -e ${conf} ] && . "${conf}"
usage ()
{
cat <<EOF
usage: $0 [-lnv]
Install packages based on detected hardware. It will use the
discover-data database to map from hardware to debian packages, install
the packages by default. Packages using module-assistant will be
automatically built and the result installed if module-assistant is
installed or pulled in as a dependency.
-l list packages
-v be verbose
-n only echo commands, do not run them
EOF
}
###############################################################################
nop=
verbose=false
listonly=false
while getopts lnv ch; do
case $ch in
l)
listonly=true
;;
n)
nop=echo
;;
v)
verbose=true
;;
?)
usage
exit ${EX_USAGE}
esac
done
shift $((${OPTIND} - 1))
###############################################################################
${verbose} && printf "Discovering hardware: "
if [ -e /etc/debian_version ] ; then
version="$(cat /etc/debian_version)"
if [ testing/unstable != "$version" ] &&
[ lenny/sid != "$version" ] ; then
dataversion="--data-version=$(cat /etc/debian_version)"
fi
fi
packages=$(${discover} --data-path=package/debian/name \
${dataversion} ${types} | grep -E -v '^ *$' | sort -u)
${verbose} && echo ${packages}
# Build kernel modules from all module-assistant packages.
assist_modules() {
# Check if any packages supported by module-assistant is installed
if [ ! -x /usr/bin/module-assistant ] ; then
return # module-assistant not installed, no need to continue
fi
prepared=false
for pkg in $packages ; do
# Check if this package is supported by module-assistant
if module-assistant --text-mode --non-inter list $pkg |
grep -q 'package not installed' ; then
if [ false = "$prepared" ] ; then
# Would like to use --non-inter here, but then prepare
# exits using 254
if module-assistant --text-mode prepare ; then
prepared=true
else
echo error: Failed to prepare module-assistant.
return
fi
fi
${verbose} && echo "info: invoking module-assistant to handle $pkg."
module-assistant --text-mode --non-inter \
build,install,clean $pkg
fi
done
}
if [ "$packages" ] ; then
if [ true = "$listonly" ] ; then
echo $packages
else
# Trick to avoid locking the debconf database when installing
# packages. The redirects are gross hacks to work around
# debconf file descriptor handling
tempfile=$(tempfile)
DISCOVER_PKGINSTALL_ASKING=true $0 $packages 8>$tempfile
packages=$(cat $tempfile)
rm $tempfile
if [ "$packages" ] ; then
if [ -x /usr/bin/debconf-apt-progress ] ; then
if [ "$DI_PROGRESS_BAR_VISIBLE" ]; then
debconf_apt_progress_opts=--no-progress
else
debconf_apt_progress_opts=
fi
$nop debconf-apt-progress $debconf_apt_progress_opts -- aptitude install -q -y $packages
else
$nop aptitude install -y $packages
fi
assist_modules
fi
fi
else
${verbose} && echo "info: no hardware specific packages found for this machine"
fi
exit 0
|