summaryrefslogtreecommitdiffstats
path: root/debian/gstreamer-plugin-template.postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/gstreamer-plugin-template.postinst')
-rw-r--r--debian/gstreamer-plugin-template.postinst13
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/gstreamer-plugin-template.postinst b/debian/gstreamer-plugin-template.postinst
new file mode 100644
index 00000000..e2168e83
--- /dev/null
+++ b/debian/gstreamer-plugin-template.postinst
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -e
+
+if [ "$1" = "configure" ]; then
+ gst-register --gst-mask=0 || true
+ gst-compprep --gst-mask=0 || true
+fi
+
+#DEBHELPER#
+
+exit 0
+