#!/bin/sh
#
# be nice to the user and tell him that something is going on...

. "${PM_FUNCTIONS}"

case "$1" in
	thaw|resume)
		echo "resuming..." > /dev/tty0
		;;
	*) exit $NA
		;;
esac
