preinst is in bluez 4.98-2ubuntu7.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
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 | #!/bin/sh
# preinst script for bluez
#
# see: dh_installdeb(1)
set -e
# summary of how this script can be called:
# * <new-preinst> `install'
# * <new-preinst> `install' <old-version>
# * <new-preinst> `upgrade' <old-version>
# * <old-preinst> `abort-upgrade' <new-version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
case "$1" in
install|upgrade)
if dpkg --compare-versions "$2" le-nl 4.98-2ubuntu1; then
(
test -f /etc/default/bluetooth && . /etc/default/bluetooth
if [ "$BLUETOOTH_ENABLED" = 0 ] &&
(! [ -f /etc/init/bluetooth.override ] ||
! grep -q -e "start on" -e "manual" /etc/init/bluetooth.override); then
printf "# Inserted by bluez\nmanual\n" >> /etc/init/bluetooth.override
fi
)
fi
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
# Automatically added by dh_installinit
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/bluetooth" ] && [ ! -L "/etc/init.d/bluetooth" ]; then
if [ "`md5sum \"/etc/init.d/bluetooth\" | sed -e \"s/ .*//\"`" != \
"`dpkg-query -W -f='${Conffiles}' bluez | sed -n -e \"\\\\' /etc/init.d/bluetooth '{s/ obsolete$//;s/.* //p}\"`" ]
then
echo "Obsolete conffile /etc/init.d/bluetooth has been modified by you, renaming to .dpkg-bak"
mv -f "/etc/init.d/bluetooth" "/etc/init.d/bluetooth.dpkg-bak"
else
rm -f "/etc/init.d/bluetooth"
fi
fi
fi
# End automatically added section
# Automatically added by dh_installdeb
dpkg-maintscript-helper rm_conffile /etc/default/bluetooth 4.98-2ubuntu4 -- "$@"
# End automatically added section
exit 0
|