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

set -e

pkgname=mate-control-center

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

exit 0