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

set -e

if [ ! -e /etc/initramfs-tools/modules ]; then
	cp /usr/share/initramfs-tools/modules /etc/initramfs-tools/
fi

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

#DEBHELPER#