From owner-freebsd-questions@FreeBSD.ORG Sun May 27 09:15:52 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 999A716A41F for ; Sun, 27 May 2007 09:15:52 +0000 (UTC) (envelope-from lalev@uni-svishtov.bg) Received: from ns.uni-svishtov.bg (ns2.uni-svishtov.bg [195.20.24.1]) by mx1.freebsd.org (Postfix) with ESMTP id 6EBEA13C465 for ; Sun, 27 May 2007 09:15:17 +0000 (UTC) (envelope-from lalev@uni-svishtov.bg) Received: from mail.uni-svishtov.bg (grinch.uni-svishtov.bg [195.20.24.9]) by ns.uni-svishtov.bg (8.13.8/8.13.3) with ESMTP id l4R9GgLB001289 for ; Sun, 27 May 2007 12:16:42 +0300 (EEST) (envelope-from lalev@uni-svishtov.bg) Received: from localhost (mail.uni-svishtov.bg [195.20.24.9]) by mail.uni-svishtov.bg (8.13.8/8.12.6) with ESMTP id l4R9Dmge053097 for ; Sun, 27 May 2007 12:13:49 +0300 (EEST) (envelope-from lalev@uni-svishtov.bg) MIME-Version: 1.0 Date: Sun, 27 May 2007 12:13:48 +0300 From: Angelin Lalev To: freebsd-questions@freebsd.org Message-ID: X-Sender: lalev@uni-svishtov.bg User-Agent: RoundCube Webmail/0.1b Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on mail.uni-svishtov.bg Subject: is it possible to set the following IPC options at boot instead of hard-coding them in kernel 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, 27 May 2007 09:15:52 -0000 Hi list, I'm running squid diskd on my proxy machines and I want to be able to use freebsd-update. Squid diskd requires the following options set in the kernel (example from daemon news http://ezine.daemonnews.org/200209/squid.html) options SYSVMSG options MSGMNB=8192 # max # of bytes in a queue options MSGMNI=40 # number of message queue identifiers options MSGSEG=512 # number of message segments per queue options MSGSSZ=64 # size of a message segment options MSGTQL=2048 # max messages in system I guess that updating that custom kernel will be a problem for freebsd-update, so is that possible to set those values at boot? (I believe SYSVMSG is in GENERIC by default).