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

set -e

pkgname=mate-file-manager

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

exit 0