bcachefs-tools/debian/bcachefs-tools.postinst

13 lines
133 B
Plaintext
Raw Normal View History

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