core/inetutils/inetd

24 lines
241 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
#!/bin/sh
#
# /etc/rc.d/inetd: start/stop inet daemon
#
case $1 in
start)
/usr/sbin/inetd
;;
stop)
killall -q /usr/sbin/inetd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file