diff options
Diffstat (limited to '')
-rw-r--r-- | debian/pciutils.postinst | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/pciutils.postinst b/debian/pciutils.postinst new file mode 100644 index 0000000..5c780fb --- /dev/null +++ b/debian/pciutils.postinst @@ -0,0 +1,23 @@ +#!/bin/sh +# postinst script for pciutils + +set -e + +case "$1" in +configure) + for ext in new neww old + do + rm -f /usr/share/misc/pci.ids.$ext + done + ;; +abort-upgrade|abort-remove|abort-deconfigure) + ;; +*) + echo "postinst called with unknown argument '$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 |