#!/bin/bash

case "$1" in
	hibernate|suspend)
		touch /tmp/.suspend
		;;
	thaw|resume)
		touch /tmp/.resume
		;;
	*)
		;;
esac
