From owner-freebsd-questions@FreeBSD.ORG Sun Mar 23 17:36:11 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D9231065673 for ; Sun, 23 Mar 2008 17:36:11 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.168]) by mx1.freebsd.org (Postfix) with ESMTP id 181978FC13 for ; Sun, 23 Mar 2008 17:36:11 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by wf-out-1314.google.com with SMTP id 25so2661731wfa.7 for ; Sun, 23 Mar 2008 10:36:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; bh=8MyIbZE/Po4ze21jDOHx2VmH7ykEguzHdEiF4ZhiN30=; b=WMv+OQeEY6Xy+yqR87YzIphNMf/wYRTCTxHTTHDfjNY/C7e+3BJhhS9+mv6VP8UTylOZ8gDUEBgFs3FmuTIXtyn5TCy0Bchj581DIedV5iohAhWRP/cPf+2GAaXI7M+R0JJbWXbMP4Sn45BXxEJqHHlZxo9Ys9cbzdEr5otuFIE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=KxcyyJ0c64IHtvYSLNOf7mtx2kcQEod+59n3T7HmLj0p/BIxxh+KL2V/w0lMmougPnAihl2iYC+aBRw0rIfyXPqdFW2NOFDjVfN80hPEdGJC/ZeRDOYasC2SXJw2LrbZ1TWYqtXw8CbnKzYOE+QvEGnAQffIXjmszKq/WH0pN40= Received: by 10.142.171.6 with SMTP id t6mr3830184wfe.117.1206292239271; Sun, 23 Mar 2008 10:10:39 -0700 (PDT) Received: from ?192.168.4.140? ( [76.113.34.1]) by mx.google.com with ESMTPS id 22sm13266136wfg.15.2008.03.23.10.10.37 (version=SSLv3 cipher=RC4-MD5); Sun, 23 Mar 2008 10:10:38 -0700 (PDT) Message-ID: <47E68F06.9050700@gmail.com> Date: Sun, 23 Mar 2008 11:10:30 -0600 From: Tim Judd User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 SeaMonkey/1.1.8 MIME-Version: 1.0 To: Sys Admin References: <6a5b467e0803230906o151b218fjc5aee94f09dc93b0@mail.gmail.com> In-Reply-To: <6a5b467e0803230906o151b218fjc5aee94f09dc93b0@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Tinybsd ports (dhcpd3) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Mar 2008 17:36:11 -0000 Sys Admin wrote: > I suppose this is more a question on ports than on Tinybsd. > > I'm trying to build a Tinybsd 0.9 system with DHCP-server (isc-dhcpd3) > and included it in tinybsd.ports file. When the system builds though, > there is an on-screen configuration menu for the dhcpd3 port. This > screen appears, but is not able to take keyboard input. Ultimately, > it wasn't possible to configure anything, and the only thing I could > do was to hit enter and continue with the defaults. > > Is there any way to circumvent this onscreen menu? > > Thanks > Ashant > Running make config in the port dir before making Tinybsd should prevent it. The config is saved under /var/db/ports. If Tinybsd is doing standard port system commands (cd net/dhcp3-server; make install), it should pick up the existing config and go with it. Or, running tinybsd with the enironment BATCH=yes will skip the port config, and build what is default if no config file exists. This one you probably don't want, but if the above doesn't work, this is something else to try. This may affect tinybsd in a way that is unpredictable though. Good luck, -Tim