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

set -e

pkgname=libmatekbd

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

exit 0