summaryrefslogtreecommitdiff
path: root/debian/mariadb-plugin-spider.postinst
diff options
context:
space:
mode:
authorOtto Kekäläinen <otto@mariadb.org>2016-10-09 14:43:34 +0300
committerOtto Kekäläinen <otto@mariadb.org>2016-10-27 18:42:16 +0300
commitd495bf42807c301da579e5de2ffcb39ea73df928 (patch)
tree790786e2aee79ec398cdf206ba673c102d09a57e /debian/mariadb-plugin-spider.postinst
parente58e7b50529d236bb50d808412d1ffef80f2da5b (diff)
downloadmariadb-git-d495bf42807c301da579e5de2ffcb39ea73df928.tar.gz
MDEV-6284: Spliy Mroonga, Spider and TokuDB into their own packages
Also each package has it's own maintainer scripts to install and uninstall them.
Diffstat (limited to 'debian/mariadb-plugin-spider.postinst')
-rw-r--r--debian/mariadb-plugin-spider.postinst12
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/mariadb-plugin-spider.postinst b/debian/mariadb-plugin-spider.postinst
new file mode 100644
index 00000000000..5e43d38226c
--- /dev/null
+++ b/debian/mariadb-plugin-spider.postinst
@@ -0,0 +1,12 @@
+#!/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#