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

set -e

pkgname=libmateweather

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

exit 0