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

set -e

#DEBHELPER#

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