/lib/partman/active_partition/15method/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
. /lib/partman/lib/base.sh
dev=$1
id=$2
cd $dev
if [ -f $id/method ]; then
method=$(cat $id/method)
else
method=dont_use
fi
if [ -f $id/filesystem ] && \
([ "$method" = keep ] || [ "$method" = format ]); then
fs=$(cat $id/filesystem)
db_metaget partman/filesystem_long/$fs description || RET=''
description="${RET:-$fs}"
else
db_metaget partman/method_long/$method description || RET=''
description="${RET:-$method}"
fi
db_metaget partman-target/text/method description
printf "method\t%s\${!TAB}%s\n" "${RET}" "$description"
|