#!/bin/sh /etc/rc.common

START=51

start()
{
	inetd
}

stop()
{
	killall inetd
}
