partman-btrfs/valid_filesystems/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

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