From owner-freebsd-current@FreeBSD.ORG Wed May 19 01:17:39 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8709016A4CE for ; Wed, 19 May 2004 01:17:39 -0700 (PDT) Received: from adhoc.bluemidnight.ca (CPE000021ffb7ce-CM000a739ac1da.cpe.net.cable.rogers.com [69.199.243.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17BE943D41 for ; Wed, 19 May 2004 01:17:39 -0700 (PDT) (envelope-from craig@bluemidnight.ca) Received: from d226-126-88.home.cgocable.net ([24.226.126.88] helo=redline) by adhoc.summerlan.bluemidnight.ca with smtp (Exim 4.33; FreeBSD) id 1BQLbD-0000aj-93 for freebsd-current@freebsd.org; Wed, 19 May 2004 03:34:47 -0400 Message-ID: <000501c43d74$19dc5fb0$0200000a@redline> From: "Craig Reyenga" To: Date: Wed, 19 May 2004 03:37:12 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Subject: setfacl and mtime X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Craig Reyenga List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 May 2004 08:17:39 -0000 Hi, I've been toying with ACLs lately, and I noticed that ACL operations change the mtime of the file, whereas chmod does not. Is this functionality intentional? More importantly, can it be turned off? craig@burnout<~> touch me && ls -l me && sleep 300 && setfacl -m u:root:rwx me && ls -l me -rw-r--r-- 1 craig admins 0 May 19 03:09 me -rw-rwxr--+ 1 craig admins 0 May 19 03:14 me* craig@burnout<~> rm me craig@burnout<~> touch me && ls -l me && sleep 300 && chmod 777 me && ls -l me -rw-r--r-- 1 craig admins 0 May 19 03:28 me -rwxrwxrwx 1 craig admins 0 May 19 03:28 me* craig@burnout<~> -Craig