/lib/partman/active_partition/50erase/choices is in ubiquity 2.18.7.
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 27 28 29 30 31 | #!/bin/sh
. /usr/share/debconf/confmodule
set -e
dev=$1
id=$2
part=$dev/$id
cd $dev
choice_erase () {
if [ -f $part/skip_erase ]; then
db_metaget partman-crypto/text/no_erase_data description || RET=''
erase=${RET:-no}
else
db_metaget partman-crypto/text/yes_erase_data description || RET=''
erase=${RET:-yes}
fi
db_metaget partman-crypto/text/erase_data description
printf "erase\t%s\${!TAB}%s\n" "$RET" $erase
}
[ -f $part/method ] || exit 0
method=$(cat $part/method)
if [ $method = crypto ]; then
choice_erase
fi
|