summaryrefslogtreecommitdiff
path: root/debian/initramfs-tools.postinst
blob: a8df95e840f4e74e49353187ef9f839e16efadce (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

# Regenerate initramfs on upgrade
if [ "$1" = "configure" -a -n "$2" ]; then
	update-initramfs -u
fi

#DEBHELPER#