#!/bin/sh
#
# Handle too small disks, warn user before modifing the disk
# partitioning.

recipe="$1"
free_size="$2"
min_size="$3"

exec report-if-disk-too-small "$recipe" "$free_size" "$min_size"
