diff options
Diffstat (limited to 'debian/firmware-netxen.postinst')
-rw-r--r-- | debian/firmware-netxen.postinst | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/debian/firmware-netxen.postinst b/debian/firmware-netxen.postinst new file mode 100644 index 0000000..6c9e968 --- /dev/null +++ b/debian/firmware-netxen.postinst @@ -0,0 +1,19 @@ +#!/bin/sh + +set -e + +case "$1" in + configure) + dpkg-trigger --no-await update-initramfs + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" 1>&2 + exit 1 + ;; +esac + +#DEBHELPER# |