From owner-freebsd-questions Sun Mar 2 1:37:56 2003 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75FCE37B401 for ; Sun, 2 Mar 2003 01:37:55 -0800 (PST) Received: from windmill.garlic.com (windmill-en0.garlic.com [208.195.160.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1FD143F75 for ; Sun, 2 Mar 2003 01:37:52 -0800 (PST) (envelope-from madriax@garlic.com) Received: from SHMOOPIE (162.sm7.dialup.garlic.net [216.139.3.162]) by windmill.garlic.com (8.11.1/8.11.1) with ESMTP id h229bi705200 for ; Sun, 2 Mar 2003 01:37:46 -0800 From: "Remington L." To: "Freebsd-Questions" Subject: DHCPD on statup? Date: Sun, 2 Mar 2003 01:37:23 -0800 Message-ID: <000001c2e09f$5d4f3890$0a5efea9@SHMOOPIE> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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