#!/bin/sh
set -e

if [ "$1" = "configure" ]; then
    # Trigger update for initramfs (LP: #1514485).
    command -v update-initramfs >/dev/null 2>&1 && update-initramfs -u
fi

#DEBHELPER#

exit 0
