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

set -e

pkgname=mate-window-manager

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

exit 0