/lib/partman/choose_partition/20auto/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 | #!/bin/sh
. /usr/share/debconf/confmodule
. /lib/partman/lib/base.sh
. /lib/partman/lib/auto-shared.sh
# Skip if no disks detected and don't run on S/390
if [ -z "$(get_auto_disks)" ] || \
[ "$(udpkg --print-architecture)" = s390 ] || \
[ "$(udpkg --print-architecture)" = s390x ]; then
exit 0
fi
db_metaget partman-auto/text/automatically_partition description
printf "auto\t$RET"
|