#!/bin/sh -e if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then invoke-rc.d xinetd stop elif [ -x /etc/init.d/xinetd ]; then /etc/init.d/xinetd stop >&2 else start-stop-daemon --quiet --stop --signal 3 --oknodo --exec /usr/sbin/xinetd fi #DEBHELPER#