You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
317 B
24 lines
317 B
#!/bin/sh
|
|
|
|
. /etc/init.d/globals
|
|
|
|
case "$1" in
|
|
start)
|
|
/sbin/inetd
|
|
;;
|
|
stop)
|
|
read pid < /var/run/inetd.pid || exit 1
|
|
kill $pid
|
|
;;
|
|
reload)
|
|
read pid < /var/run/inetd.pid || exit 1
|
|
kill -HUP $pid
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "[$BASENAME] Usage: $0 {start|restart|reload|stop}"
|
|
;;
|
|
esac
|
|
|