home *** CD-ROM | disk | FTP | other *** search
/ ftp.eterna.com.au / 2014.06.ftp.eterna.com.au.tar / ftp.eterna.com.au / pub / rc.d.tar.gz / rc.d.tar / rc.d / inetd < prev    next >
Text File  |  1998-09-23  |  255b  |  15 lines

  1. #! /bin/sh
  2.  
  3. # PROVIDE: inetd
  4. # REQUIRE: daemon login
  5.  
  6. if checkyesno inetd; then
  7.     if [ -r /etc/inetd.conf ]; then
  8.         echo -n ' inetd';    inetd $inetd_flags
  9.     else
  10.         echo
  11.         logger -s "WARNING: /etc/inetd.conf not readable; " \
  12.             "inetd not started."
  13.     fi
  14. fi
  15.