summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-initramfs-hook
blob: 7785c6439fc799c114b4a768de8f39aef08873bf (plain)
1
2
3
4
5
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
	if [ -x /usr/sbin/update-initramfs ] && [ -e /etc/initramfs-tools/initramfs.conf ]; then
		update-initramfs -u
	fi
fi