From owner-svn-src-all@FreeBSD.ORG Sun Jan 16 20:10:55 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0091106564A; Sun, 16 Jan 2011 20:10:55 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DF4B88FC15; Sun, 16 Jan 2011 20:10:55 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p0GKAtVv075449; Sun, 16 Jan 2011 20:10:55 GMT (envelope-from keramida@svn.freebsd.org) Received: (from keramida@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p0GKAtXn075447; Sun, 16 Jan 2011 20:10:55 GMT (envelope-from keramida@svn.freebsd.org) Message-Id: <201101162010.p0GKAtXn075447@svn.freebsd.org> From: Giorgos Keramidas Date: Sun, 16 Jan 2011 20:10:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r217481 - head/share/man/man5 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jan 2011 20:10:56 -0000 Author: keramida (doc committer) Date: Sun Jan 16 20:10:55 2011 New Revision: 217481 URL: http://svn.freebsd.org/changeset/base/217481 Log: Fix the mount example of xfDmitry Marakasov s(5) filesystems by including the read-only option. We only support ro mounts for xfs, so it's nice if the examples we show in the manpage are easy to copy/paste. PR: docs/149106 Submitted by: amdmi3 MFC after: 3 days Modified: head/share/man/man5/xfs.5 Modified: head/share/man/man5/xfs.5 ============================================================================== --- head/share/man/man5/xfs.5 Sun Jan 16 18:46:17 2011 (r217480) +++ head/share/man/man5/xfs.5 Sun Jan 16 20:10:55 2011 (r217481) @@ -53,7 +53,7 @@ To mount a volume located on .Pa /dev/ad1s1 : .Pp -.Dl "mount -t xfs /dev/ad1s1 /mnt" +.Dl "mount -t xfs -o ro /dev/ad1s1 /mnt" .Sh SEE ALSO .Xr nmount 2 , .Xr unmount 2 ,