mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
13 lines
294 B
Text
13 lines
294 B
Text
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Install Mroonga
|
||
|
# No user or password parameter is required with new MariaDB that
|
||
|
# has unix socket authentication support by default.
|
||
|
mysql < /usr/share/mysql/mroonga/uninstall.sql || true
|
||
|
# Always exit with success instead of leaving dpkg in a broken state
|
||
|
|
||
|
|
||
|
#DEBHELPER#
|