mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-23 00:00:02 +03:00
12 lines
182 B
Plaintext
12 lines
182 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
case "$1" in
|
||
|
prereqs)
|
||
|
echo "udev"
|
||
|
exit 0
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
cp -p /lib/udev/rules.d/61-bcache.rules $DESTDIR/lib/udev/rules.d/
|
||
|
cp -p /sbin/probe-bcache $DESTDIR/sbin
|