diff options
Diffstat (limited to 'debian/live-boot-initramfs-tools.postinst')
| -rw-r--r-- | debian/live-boot-initramfs-tools.postinst | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/live-boot-initramfs-tools.postinst b/debian/live-boot-initramfs-tools.postinst new file mode 100644 index 0000000..2bae8ae --- /dev/null +++ b/debian/live-boot-initramfs-tools.postinst @@ -0,0 +1,25 @@ +#!/bin/sh + +set -e + +case "${1}" in + configure) + if [ -x /usr/sbin/update-initramfs ] + then + update-initramfs -u + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 |
