I've been trying very hard to get dhcpd to load on boot. I've done
extensive hacking of /etc/rc to add a rc.user to the mix. This was a
simple addition of:

If [ -r /etc/user ]; then
        . /etc/user
fi

then in my rc.user is this:
#!/bin/sh -

echo -n 'Loading third party server stuff:'

case ${dhcpd_enable} in
[Yy][Ee][Ss])
        echo -n ' dhcpd' ; dhcpd
;;
esac

And then into my /etc/rc.conf I have:
Dhcpd_enable="YES"

Yet I see none of this happen on boot. Is there something I'm missing or
does anyone know another way that is more effiecient/easier?



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message

Reply via email to