mirror of
https://github.com/MariaDB/server.git
synced 2026-05-13 10:30:10 +02:00
12 lines
290 B
Bash
12 lines
290 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Install Spider
|
|
# No user or password parameter is required with new MariaDB that
|
|
# has unix socket authentication support by default.
|
|
mysql < /usr/share/mysql/install_spider.sql || true
|
|
# Always exit with success instead of leaving dpkg in a broken state
|
|
|
|
|
|
#DEBHELPER#
|