From owner-freebsd-questions@FreeBSD.ORG Fri Jul 2 14:48:59 2010 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 439E21065670 for ; Fri, 2 Jul 2010 14:48:59 +0000 (UTC) (envelope-from westr@connection.ca) Received: from nc-tor-mail2.connection.ca (nc-tor-mail2.connection.ca [205.207.122.27]) by mx1.freebsd.org (Postfix) with ESMTP id 22FE98FC19 for ; Fri, 2 Jul 2010 14:48:58 +0000 (UTC) Received: from westr-main.tor.connection.ca (external.tor.connection.ca [216.234.38.18]) by nc-tor-mail2.connection.ca (Postfix) with ESMTP id 5C34D74E591 for ; Fri, 2 Jul 2010 10:48:58 -0400 (EDT) Date: Fri, 2 Jul 2010 10:48:57 -0400 From: Ross Organization: Network Connection X-Priority: 3 (Normal) Message-ID: <72157033.20100702104857@connection.ca> To: freebsd-questions@freebsd.org In-Reply-To: <4C2CB4CC.4090208@serverman.de> References: <4C2CB4CC.4090208@serverman.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: Re: Automated sysinstall install.cfg X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ross List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jul 2010 14:48:59 -0000 TT> is there a person who can help me to solve some problems with TT> sysinstall and its install.cfg. TT> How can i manage that my mfsroot executes custom commands ? Before the "installCommit" command you generally only have access to statically compiled commands (generally in the /stand directory) from the mfsroot image used. -= example lines in install.cfg # Sleep for 15 seconds to stabilize things. command=/stand/sleep 15 system -= After the "installCommit" command, a chroot will have occurred to the installation mount point, and you must then use your installed binaries to do work. Specify full paths for everything and note that there are other oddities since not all things are online/configured, so try and keep it as simple as possible. --