#!/bin/bash

set -e

pkgname=mate-control-center

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

exit 0