blob: 74532cde32cb8bd400f0e1130c7454e73a90f170 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
cat << EOF
NOTE
----
# If you want to use this driver with sane:
# echo "hpaio" >> /etc/sane.d/dll.conf
EOF
}
post_upgrade() {
if [ "`vercmp $2 3.12.4-2`" -lt 0 ]; then
# important upgrade notice
echo "> Please remove your printer in cups, then add it"
echo "> back and reconfigure it to make it work again!"
fi
}
|