summaryrefslogtreecommitdiff
path: root/distro/ubuntu/prerm
blob: 6e4b0a50d2458c6f902b9ee0bf04d81aca9a9046 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

set -e

pkgname=mate-notification-daemon

if [ -f /usr/sbin/mateconfpkg ]; then
	/usr/sbin/mateconfpkg --uninstall ${pkgname}
fi

exit 0