#!/bin/sh

set -e

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