diff options
Diffstat (limited to 'debian/e2fsprogs.postinst')
-rw-r--r-- | debian/e2fsprogs.postinst | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/e2fsprogs.postinst b/debian/e2fsprogs.postinst new file mode 100644 index 0000000..00ac363 --- /dev/null +++ b/debian/e2fsprogs.postinst @@ -0,0 +1,13 @@ +#!/bin/sh + +# Abort on error. +set -e + +if [ -x /usr/sbin/update-initramfs -a \ + -e /etc/initramfs-tools/initramfs.conf ]; then + update-initramfs -u +fi + +#DEBHELPER# + +exit 0 |