#!/bin/sh

. /usr/share/debconf/confmodule

set -e

case "$1" in
    ('configure')
        if which update-initramfs >/dev/null 2>&1
        then
            update-initramfs -u
        fi
    ;;
esac

#DEBHELPER#

exit 0
