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 / dhcpd < prev    next >
Text File  |  1998-09-23  |  250b  |  15 lines

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