diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-10-06 14:02:04 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-10-06 14:02:04 +0200 |
commit | 82a152928f820a6aeb02ef8cd9ebfa7d3bcaae48 (patch) | |
tree | 0dd1472607450fac076ef4986c654c537153a1e8 /debian/libsane.preinst | |
parent | 6e9c41a892ed0e0da326e0278b3221ce3f5713b8 (diff) | |
parent | ba8d09abe681600aad991f4a75e904615b7ed29f (diff) |
Merge tag 'upstream/1.0.24'debian/1.0.24-1.2
Upstream version 1.0.24
Diffstat (limited to 'debian/libsane.preinst')
-rw-r--r-- | debian/libsane.preinst | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/debian/libsane.preinst b/debian/libsane.preinst deleted file mode 100644 index 6489e3a..0000000 --- a/debian/libsane.preinst +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -set -e - -# From http://wiki.debian.org/DpkgConffileHandling -# Remove a no-longer used conffile -rm_conffile() { - PKGNAME="$1" - CONFFILE="$2" - if [ -e "$CONFFILE" ]; then - md5sum="`md5sum \"$CONFFILE\" | sed -e \"s/ .*//\"`" - old_md5sum="`dpkg-query -W -f='${Conffiles}' $PKGNAME | sed -n -e \"\\\\' $CONFFILE '{s/ obsolete$//;s/.* //p}\"`" - if [ "$md5sum" != "$old_md5sum" ]; then - echo "Obsolete conffile $CONFFILE has been modified by you." - echo "Saving as $CONFFILE.dpkg-bak ..." - mv -f "$CONFFILE" "$CONFFILE".dpkg-bak - else - echo "Removing obsolete conffile $CONFFILE ..." - rm -f "$CONFFILE" - fi - fi -} - -if [ "$1" = install ] || [ "$1" = upgrade ]; then - ## Transition from the old-style udev setup to the old-style dh_installudev setup - ## Then dh_installudev will take care of the transition to the new dh_installudev setup - if [ -e "/etc/udev/rules.d/025_libsane.rules" ]; then - mv /etc/udev/rules.d/025_libsane.rules /etc/udev/rules.d/z60_libsane.rules - fi - - ## Remove obsolete /etc/modprobe.d/libsane conffile - if dpkg --compare-versions "$2" le "1.0.19-25"; then - rm_conffile libsane /etc/modprobe.d/libsane - fi -fi - -#DEBHELPER# |