postinst is in xserver-xorg-input-wacom 0.26.0+20140918-1.
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 | #!/bin/sh
set -e
# dh_installudev left this orphaned when the udev rules location changed,
# so remove it now if it remains unchanged by the local admin. See #565126.
OLD_RULES=/etc/udev/rules.d/z60_xserver-xorg-input-wacom.rules
if [ -f $OLD_RULES ];
then
OLD_HASH=$(dpkg-query -W -f='${Conffiles}' xserver-xorg-input-wacom 2>/dev/null |
awk '$1 == "'$OLD_RULES'" { print $2 }')
if [ -n "$OLD_HASH" ] && [ "$(md5sum $OLD_RULES | cut -d' ' -f1)" = "$OLD_HASH" ];
then
rm -f $OLD_RULES
fi
fi
|