xinetd.init 210 B

123456789101112131415
  1. #!/bin/sh /etc/rc.common
  2. # Copyright (C) 2006-2011 OpenWrt.org
  3. START=50
  4. SERVICE_USE_PID=1
  5. start() {
  6. service_start /usr/sbin/xinetd -pidfile /var/run/xinetd.pid
  7. }
  8. stop() {
  9. service_stop /usr/sbin/xinetd
  10. }