partman-btrfs/init.d/kernelmodules_btrfs
Joey Hess 0eb02adc27 initial commit of partman-btrfs
This is untested and unlikely to work without parted support.
Committing what I have since I don't trust btrfs to preserve the data. ;-)

Note to translators: Probably not worth wasting your time with this yet.
Have not run debconf-updatepo.

r62090
2010-01-27 20:14:29 +00:00

20 lines
322 B
Bash
Executable file

#!/bin/sh
mkdir -p /var/lib/partman
cat /proc/modules |
while read module_name x; do
if [ "$module_name" = btrfs ]; then
>/var/lib/partman/btrfs
exit 0
fi
done
if modprobe btrfs >/dev/null 2>/dev/null; then
>/var/lib/partman/btrfs
exit 0
fi
if grep -q btrfs /proc/filesystems; then
>/var/lib/partman/btrfs
fi