]> git.sesse.net Git - bcachefs-tools-debian/blob - debian/bcachefs-tools.postrm
Upload to experimental
[bcachefs-tools-debian] / debian / bcachefs-tools.postrm
1 #!/bin/sh
2
3 set -e
4
5 case "$1" in
6     remove)
7         if which update-initramfs >/dev/null; then
8             update-initramfs -u
9         fi
10     ;;
11 esac
12