bcachefs-tools/debian/bcachefs-tools.postinst
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
133 B
Bash

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