From owner-freebsd-stable@FreeBSD.ORG Fri Jan 6 10:57:33 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 185D516A41F for ; Fri, 6 Jan 2006 10:57:33 +0000 (GMT) (envelope-from dwmalone@maths.tcd.ie) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 2E37843DB2 for ; Fri, 6 Jan 2006 10:57:14 +0000 (GMT) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie ([134.226.81.10] helo=walton.maths.tcd.ie) by salmon.maths.tcd.ie with SMTP id ; 6 Jan 2006 10:57:12 +0000 (GMT) Date: Fri, 6 Jan 2006 10:57:12 +0000 From: David Malone To: V??clav Haisman Message-ID: <20060106105712.GA46889@walton.maths.tcd.ie> References: <43BE3D81.6090402@sh.cvut.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <43BE3D81.6090402@sh.cvut.cz> User-Agent: Mutt/1.5.6i Sender: dwmalone@maths.tcd.ie Cc: freebsd-stable@freebsd.org Subject: Re: [6.0] Snapshot removes acls flag from fs. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jan 2006 10:57:33 -0000 On Fri, Jan 06, 2006 at 10:50:57AM +0100, V??clav Haisman wrote: > When I make snapshot of fs it removes "acls" flag from mount. While the > command is "mount -u -o snapshot etc." I don't think it should remove > the flag because it is not specified besides the snapshot option. You probably want something like: mount -u -o cur,snapshot ... See the "current" and "fstab" options in the mount man page. An easier way to do this would be to use the mksnap_ffs command, which should preserve the old options. David.