Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Mar 2003 01:37:23 -0800
From:      "Remington L." <madriax@garlic.com>
To:        "Freebsd-Questions" <freebsd-questions@FreeBSD.ORG>
Subject:   DHCPD on statup?
Message-ID:  <000001c2e09f$5d4f3890$0a5efea9@SHMOOPIE>

next in thread | raw e-mail | index | archive | help
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 majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?000001c2e09f$5d4f3890$0a5efea9>