mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-01-23 00:07:07 +03:00
e64e781bf1
Also removed the unnecessary debian/bcachefs-tools.dirs file
13 lines
133 B
Bash
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
|
|
|