mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-01-23 00:07:07 +03:00
13 lines
130 B
Plaintext
13 lines
130 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
case "$1" in
|
||
|
remove)
|
||
|
if which update-initramfs >/dev/null; then
|
||
|
update-initramfs -u
|
||
|
fi
|
||
|
;;
|
||
|
esac
|
||
|
|