#!/bin/sh

set -e

case $1 in
	remove)
		if test -x /usr/bin/odbcinst ; then
			odbcinst -u -d -n 'MariaDB Unicode'
		fi ;;
esac

#DEBHELPER#

