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

set -e

pkgname=mate-screensaver

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

exit 0