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

set -e

pkgname=mate-session-manager

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

exit 0