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
25 lines
282 B
Bash
Executable file
25 lines
282 B
Bash
Executable file
#!/bin/sh
|
|
|
|
dev=$1
|
|
id=$2
|
|
property=$3
|
|
|
|
[ -f /var/lib/partman/btrfs ] || exit 0
|
|
|
|
case $property in
|
|
formatable)
|
|
echo btrfs
|
|
;;
|
|
existing)
|
|
[ -f $id/detected_filesystem ] || exit 0
|
|
fs=$(cat $id/detected_filesystem)
|
|
|
|
case "$fs" in
|
|
btrfs)
|
|
echo btrfs
|
|
;;
|
|
esac
|
|
;;
|
|
esac
|
|
|
|
|