mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
10 lines
215 B
Bash
10 lines
215 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Install Mroonga
|
|
mariadb --defaults-file=/etc/mysql/debian.cnf < /usr/share/mysql/mroonga/install.sql || true
|
|
# Always exit with success instead of leaving dpkg in a broken state
|
|
|
|
|
|
#DEBHELPER#
|