#!/bin/sh

. /lib/partman/definitions.sh

dev=$1
id=$2
property=$3

db_metaget partman-prep/text/prep description

# The imaginery file system "prep" is available only for prep partitions
[ -f $id/method ] || exit 0
method=$(cat $id/method)
if [ "$method" = prep ]; then
	printf "prep\t${RET}\n"
fi
