blob: 6162b34dd8a10cb7325bfc6e17e36a445f065f43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
post_install() {
echo "update desktop mime database..."
update-desktop-database -q
update-mime-database usr/share/mime 1>&2 > /dev/null
}
post_upgrade() {
post_install $1
if [ ${2%%_*} == "3.0a1" ]; then
echo "There were lots of changes to the behavior of the majority of tools."
echo "This may cause your files to look differently than before."
fi
}
post_remove() {
post_install $1
}
# vim:set ts=2 sw=2 et:
|