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

set -e

#DEBHELPER#

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