diff options
author | David I. Lehn <dlehn@users.sourceforge.net> | 2002-01-12 03:42:41 +0000 |
---|---|---|
committer | David I. Lehn <dlehn@users.sourceforge.net> | 2002-01-12 03:42:41 +0000 |
commit | 9e96c2b268f0c472f528c711a3f5df5658cf72c4 (patch) | |
tree | dd54dac65e58afcd5805f248a29a384f4d6c27a5 /debian/gstreamer-plugin-template.postinst | |
parent | 7f1aec856f11e0a92b56b11ee57cf3b9bc41a7ee (diff) | |
download | gst-plugins-bad-9e96c2b268f0c472f528c711a3f5df5658cf72c4.tar.gz gst-plugins-bad-9e96c2b268f0c472f528c711a3f5df5658cf72c4.tar.bz2 gst-plugins-bad-9e96c2b268f0c472f528c711a3f5df5658cf72c4.zip |
Debian 0.3.1-1 packaging updateDEBIAN-0_3_1-1
Original commit message from CVS:
Debian 0.3.1-1 packaging update
Diffstat (limited to 'debian/gstreamer-plugin-template.postinst')
-rw-r--r-- | debian/gstreamer-plugin-template.postinst | 13 |
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 + |