From owner-freebsd-jail@FreeBSD.ORG Fri Feb 12 21:23:05 2010 Return-Path: Delivered-To: freebsd-jail@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66ED5106566C for ; Fri, 12 Feb 2010 21:23:05 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [94.124.105.4]) by mx1.freebsd.org (Postfix) with ESMTP id 25A7E8FC13 for ; Fri, 12 Feb 2010 21:23:04 +0000 (UTC) Received: from elsa.codelab.cz (localhost.codelab.cz [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id 92FF919E019; Fri, 12 Feb 2010 22:23:03 +0100 (CET) Received: from [192.168.1.2] (r5bb235.net.upc.cz [86.49.61.235]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id 6D05619E023; Fri, 12 Feb 2010 22:23:01 +0100 (CET) Message-ID: <4B75C6B4.6040903@quip.cz> Date: Fri, 12 Feb 2010 22:23:00 +0100 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9.1.7) Gecko/20100104 SeaMonkey/2.0.2 MIME-Version: 1.0 To: Christer Solskogen References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-jail@freebsd.org Subject: Re: Fwd: Jailcfg - A new tool for creating small(!) jails X-BeenThere: freebsd-jail@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion about FreeBSD jail\(8\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Feb 2010 21:23:05 -0000 Christer Solskogen wrote: > The homepage for the project is http://code.google.com/p/jailcfg/. Just a small note, I think you don't need bash dependency (#!/usr/local/bin/bash) in jail_maintenance.sh. It can be #!/bin/sh. And ls -1 $jail_dir/$jail/var/db/pkg can be ls $jail_dir/$jail/var/db/pkg (without -1, redirected output is always one column) Miroslav Lachman