summaryrefslogtreecommitdiff
path: root/pcr/retroshare/retroshare.install
blob: e48df13610f0f0d4d7eacdf126f198ce2189dad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
post_install() {
	# Update Desktop DB
	if [[ -x /usr/bin/update-desktop-database ]]; then
		echo "Update desktop database..."
		update-desktop-database -q ;
	fi
}

post_upgrade() {
	post_install
}

post_remove() {
	post_install
}