summarylogtreecommitdiffstats
path: root/udf-infusion.install
diff options
context:
space:
mode:
Diffstat (limited to 'udf-infusion.install')
-rw-r--r--udf-infusion.install39
1 files changed, 39 insertions, 0 deletions
diff --git a/udf-infusion.install b/udf-infusion.install
new file mode 100644
index 000000000000..e50eecf661c0
--- /dev/null
+++ b/udf-infusion.install
@@ -0,0 +1,39 @@
+# Register functions
+post_install() {
+ start=
+ if systemctl -q is-active mysqld; then
+ echo Stopping mysqld... >&2
+ start=1
+ systemctl stop mysqld
+ fi
+ echo Registering UDF library... >&2
+ mysqld -u mysql --bootstrap < /usr/share/udf-infusion/load.sql 2> /dev/null
+ if test -n "$start"; then
+ echo Starting mysqld... >&2
+ systemctl start mysqld
+ fi
+}
+
+post_upgrade() {
+ post_install "$@"
+}
+
+# Unregister functions
+pre_remove() {
+ start=
+ if systemctl -q is-active mysqld; then
+ echo Stopping mysqld... >&2
+ start=1
+ systemctl stop mysqld
+ fi
+ echo Unregistering UDF library... >&2
+ mysqld -u mysql --bootstrap < /usr/share/udf-infusion/unload.sql 2> /dev/null
+ if test -n "$start"; then
+ echo Starting mysqld... >&2
+ systemctl start mysqld
+ fi
+}
+
+pre_upgrade() {
+ pre_remove "$@"
+}