blob: cdd26ebbc452158859796277fb6f08a4d4c7ac3f (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
set -e
# Uninstall Mroonga
mysql --defaults-file=/etc/mysql/debian.cnf < /usr/share/mysql/mroonga/uninstall.sql || true
# Always exit with success instead of leaving dpkg in a broken state
#DEBHELPER#
|