postinst is in gpsd 3.4-2.
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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | #!/bin/bash
# postinst script for gpsd
set -e
. /usr/share/debconf/confmodule
if [ "$1" = "configure" ] ; then
#remove the old udev rules link
if dpkg --compare-versions "$2" lt "2.37-1"; then
[ ! -L /etc/udev/rules.d/025_gpsd.rules ] || rm -f /etc/udev/rules.d/025_gpsd.rules || true
fi
# move rc.d
if dpkg --compare-versions "$2" gt "2.39-1"; then
if [ -L /etc/rc0.d/K20gpsd -a \
-L /etc/rc1.d/K20gpsd -a \
-L /etc/rc2.d/S20gpsd -a \
-L /etc/rc3.d/S20gpsd -a \
-L /etc/rc4.d/S20gpsd -a \
-L /etc/rc5.d/S20gpsd -a \
-L /etc/rc6.d/K20gpsd ]; then
update-rc.d -f gpsd remove
fi
fi
# generate /etc/default/gpsd
db_get gpsd/device
DEVICES=$RET
db_get gpsd/start_daemon
START_DAEMON=$RET
db_get gpsd/daemon_options
GPSD_OPTIONS=$RET
db_get gpsd/autodetection
USBAUTO=$RET
db_get gpsd/socket
GPSD_SOCKET=$RET
cat <<EOF > /etc/default/gpsd
# Default settings for gpsd.
# Please do not edit this file directly - use \`dpkg-reconfigure gpsd' to
# change the options.
START_DAEMON="$START_DAEMON"
GPSD_OPTIONS="$GPSD_OPTIONS"
DEVICES="$DEVICES"
USBAUTO="$USBAUTO"
GPSD_SOCKET="$GPSD_SOCKET"
EOF
fi
# tell debconf we are done. otherwise, it hangs waiting for the daemon.
db_stop;
# Automatically added by dh_installinit
if [ -x "/etc/init.d/gpsd" ]; then
if [ ! -e "/etc/init/gpsd.conf" ]; then
update-rc.d gpsd start 26 2 3 4 5 . stop 73 0 1 6 . >/dev/null
fi
invoke-rc.d gpsd start || exit $?
fi
# End automatically added section
# Automatically added by dh_installudev
if [ "$1" = configure ]; then
if [ -e "/etc/udev/rules.d/z60_gpsd.rules" ]; then
echo "Preserving user changes to /etc/udev/rules.d/40-gpsd.rules ..."
if [ -e "/etc/udev/rules.d/40-gpsd.rules" ]; then
mv -f "/etc/udev/rules.d/40-gpsd.rules" "/etc/udev/rules.d/40-gpsd.rules.dpkg-new"
fi
mv -f "/etc/udev/rules.d/z60_gpsd.rules" "/etc/udev/rules.d/40-gpsd.rules"
fi
fi
# End automatically added section
exit 0
|