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.
19 lines
227 B
19 lines
227 B
#!/bin/sh
|
|
|
|
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
|
|
;;
|
|
esac
|
|
|