#!/bin/sh
set -e

if [ -x "/etc/init.d/openbsd-inetd" ]; then
	if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
		invoke-rc.d openbsd-inetd stop
	else
		/etc/init.d/openbsd-inetd stop
	fi
fi

#DEBHELPER#