bcachefs-tools/debian/bcachefs-tools.postrm
Tim Schlueter e64e781bf1 Update initramfs after .deb install or uninstall
Also removed the unnecessary debian/bcachefs-tools.dirs file
2019-01-13 18:53:37 -08:00

13 lines
130 B
Bash

#!/bin/sh
set -e
case "$1" in
remove)
if which update-initramfs >/dev/null; then
update-initramfs -u
fi
;;
esac