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
27 lines
500 B
Bash
Executable file
27 lines
500 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. /lib/partman/lib/base.sh
|
|
|
|
btrfs=no
|
|
|
|
for dev in $DEVICES/*; do
|
|
[ -d "$dev" ] || continue
|
|
cd $dev
|
|
partitions=
|
|
open_dialog PARTITIONS
|
|
while { read_line num id size type fs path name; [ "$id" ]; }; do
|
|
[ "$fs" != free ] || continue
|
|
[ -f $id/method -a -f $id/acting_filesystem ] || continue
|
|
filesystem=$(cat $id/acting_filesystem)
|
|
case $filesystem in
|
|
btrfs)
|
|
btrfs=yes
|
|
;;
|
|
esac
|
|
done
|
|
close_dialog
|
|
done
|
|
|
|
if [ "$btrfs" = yes ]; then
|
|
apt-install btrfs-tools || true
|
|
fi
|