#!/bin/bash

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

case "$1" in
    pre)
        service seh_vhcd stop
        ;;
    post)
        service seh_vhcd start
        ;;
esac

exit $?
