#!/bin/sh

. /lib/partman/lib/base.sh

dev=$2
id=$3

if ask_user /lib/partman/choose_method "$dev" "$id"; then
	update_partition $dev $id
fi

exit 0
