From owner-freebsd-questions@FreeBSD.ORG Tue Jan 1 01:42:02 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 45F1916A41A for ; Tue, 1 Jan 2008 01:42:02 +0000 (UTC) (envelope-from jeffrey@goldmark.org) Received: from out4.smtp.messagingengine.com (out4.smtp.messagingengine.com [66.111.4.28]) by mx1.freebsd.org (Postfix) with ESMTP id 1BDD313C455 for ; Tue, 1 Jan 2008 01:42:02 +0000 (UTC) (envelope-from jeffrey@goldmark.org) Received: from compute1.internal (compute1.internal [10.202.2.41]) by out1.messagingengine.com (Postfix) with ESMTP id 9BC097EB0C; Mon, 31 Dec 2007 20:42:01 -0500 (EST) Received: from heartbeat2.messagingengine.com ([10.202.2.161]) by compute1.internal (MEProxy); Mon, 31 Dec 2007 20:42:01 -0500 X-Sasl-enc: nwDmvRSqFlxhIhJmChyBLzEaRtSop6dy3tNte0CCA9DL 1199151721 Received: from hagrid.ewd.goldmark.org (n114.ewd.goldmark.org [72.64.118.114]) by mail.messagingengine.com (Postfix) with ESMTP id 48845257DC; Mon, 31 Dec 2007 20:42:01 -0500 (EST) Message-Id: From: Jeffrey Goldberg To: DAve In-Reply-To: <4779071A.2020506@pixelhammer.com> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v915) Date: Mon, 31 Dec 2007 19:42:00 -0600 References: <542F8326-4A77-42AA-9FFF-CB8C6AD8756A@goldmark.org> <20071230234432.3389a010.wmoran@potentialtech.com> <3B585815-EC68-400E-901D-A594402DD874@goldmark.org> <4779071A.2020506@pixelhammer.com> X-Mailer: Apple Mail (2.915) Cc: User questions Subject: Re: How to not start syslogd 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: Tue, 01 Jan 2008 01:42:02 -0000 On Dec 31, 2007, at 9:13 AM, DAve wrote: > Jeffrey Goldberg wrote: >> Yep. It was a typo. I should let this be a reminder to always >> copy and >> paste such things into email instead of retyping. > Small hint shown to me many years ago when enabling things in rc.conf. > If I want to startup ipfilter for example (trimmed to avoid wrapping). > > bash-2.05b# cat /etc/defaults/rc.conf | grep ^ipfilter > > Returns the following, > ipfilter_enable="NO" # Set to YES to enable ipfilter > ipfilter_program="/sbin/ipf" # where the ipfilter program lives > ipfilter_rules="/etc/ipf.rules" # rules definition file for ipfilter, > ipfilter_flags="" # additional flags for ipfilter > > If it looks like what you want then write it into your running > rc.conf, > > cat /etc/defaults/rc.conf | grep ^ipfilter >> /etc/rc.conf > > Then you can edit to enable, add flags, etc. Cures the typos. Thank you! That is a very nice tip. -j