pkg://akonadi-server_1.0.0-0ubuntu3_i386.deb:3205216/postinst
info downloads
#! /bin/sh
set -e
case "$1" in
configure)
if [ -x /etc/init.d/apparmor ]; then
invoke-rc.d apparmor force-reload || true
fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
# Automatically added by dh_installmime
if [ "$1" = "configure" ] && [ -x "`which update-mime-database 2>/dev/null`" ]; then
update-mime-database /usr/share/mime
fi
# End automatically added section
exit 0