#!/bin/bash

[ -f /etc/init.d/seh-utn-srv ] || exit 0

case "$1" in
	hibernate|suspend)
        service seh-utn-srv stop
		;;
	thaw|resume) 
        service seh-utn-srv start
		;;
	*)
		;;
esac

exit $?
