2006-10-04 20:57:49 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
2011-11-04 12:28:17 +00:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2007-05-10 10:38:53 +00:00
|
|
|
START=50
|
2006-07-24 18:54:59 +00:00
|
|
|
|
|
|
|
DEFAULT=/etc/default/xinetd
|
|
|
|
RUN_D=/var/run
|
|
|
|
PID_F=$RUN_D/xinetd.pid
|
|
|
|
|
2006-10-04 20:57:49 +00:00
|
|
|
start() {
|
2006-10-15 21:03:30 +00:00
|
|
|
[ -f $DEFAULT ] && . $DEFAULT
|
2006-10-04 20:57:49 +00:00
|
|
|
[ -d $RUN_D ] || mkdir -p $RUN_D
|
2011-11-04 12:28:17 +00:00
|
|
|
xinetd -pidfile $PID_F $OPTIONS
|
2006-10-04 20:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
[ -f $PID_F ] && kill $(cat $PID_F)
|
|
|
|
}
|
2006-07-24 18:54:59 +00:00
|
|
|
|