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
20 lines
322 B
Bash
Executable file
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
|