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

set -e

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