/lib/partman/choose_method/25filesystem/choices is in ubiquity 2.10.16.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | #!/bin/sh
. /usr/share/debconf/confmodule
dev=$1
id=$2
filesystems=$(
for i in /lib/partman/valid_filesystems/*; do
[ -x $i ] || continue
( $i $dev $id existing
$i $dev $id formatable ) | sort -u
done
)
allowed=$filesystems
for i in /lib/partman/veto_filesystems/*; do
[ -x $i ] || continue
allowed=$($i $dev $id "$allowed")
done
for fs in $allowed; do
db_metaget partman/filesystem_long/$fs description || RET=''
RET=${RET:-$fs}
printf "${fs}\t${RET}\n"
done
|