#!/bin/sh

case "$1" in
  suspend)
	;;
  resume)
	if [ "$2" = "suspend" ]; then
		/etc/init.d/mwavem restart
	fi
	;;
esac
