summaryrefslogtreecommitdiff
path: root/~xihh/retroshare/retroshare.install
blob: e406a579eb56a0e37734213668fe1f52979847c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
post_install() {
	# Update Desktop DB
	if [ "x`which update-desktop-database 2>/dev/null`" != "x" ]; then
		echo "Update desktop database..."
		update-desktop-database -q ;
	fi
}

post_upgrade() {
	post_install
}

post_remove() {
	post_install
}