blob: eed4f1ac8aa6ad5bdc7379522c1b000bdc7a93d6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
set -e
# Uninstall Mroonga
mariadb --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#
|