svn commit: r47889 - head/en_US.ISO8859-1/books/handbook/network-servers
Benjamin Kaduk
bjk at FreeBSD.org
Sat Dec 19 00:44:26 UTC 2015
Author: bjk
Date: Sat Dec 19 00:44:24 2015
New Revision: 47889
URL: https://svnweb.freebsd.org/changeset/doc/47889
Log:
Do not use a potentially symlink'd path in /etc/exports example
/home is commonly created by the installer as a symlink to /usr/home, and
symbolic links are not permitted in these directives, per exports(5).
Submitted by: Sebastian Schaack <sebastian at schaack.io>
Modified:
head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml
Modified: head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml Fri Dec 18 23:56:33 2015 (r47888)
+++ head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml Sat Dec 19 00:44:24 2015 (r47889)
@@ -664,7 +664,7 @@ server-program-arguments</programlisting
the subdirectories, but will permit the client to mount the
directories that are required as needed.</para>
- <programlisting>/home -alldirs 10.0.0.2 10.0.0.3 10.0.0.4</programlisting>
+ <programlisting>/usr/home -alldirs 10.0.0.2 10.0.0.3 10.0.0.4</programlisting>
<para>This next example exports <filename>/a</filename> so that
two clients from different domains may access that file
More information about the svn-doc-head
mailing list