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.
20 lines
227 B
20 lines
227 B
8 years ago
|
#!/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
|