mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
7316b14144
On systems with unix socket authentication root could run these without any special maintenance accounts.
12 lines
330 B
Bash
12 lines
330 B
Bash
#!/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 --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#
|