From owner-svn-doc-all@freebsd.org Wed Nov 20 17:43:36 2019 Return-Path: Delivered-To: svn-doc-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id B2C1D1BD7E6; Wed, 20 Nov 2019 17:43:36 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47J96049CFz47T2; Wed, 20 Nov 2019 17:43:36 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7239D2642B; Wed, 20 Nov 2019 17:43:36 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAKHha6U024094; Wed, 20 Nov 2019 17:43:36 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAKHhaA4024093; Wed, 20 Nov 2019 17:43:36 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201911201743.xAKHhaA4024093@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Wed, 20 Nov 2019 17:43:36 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r53617 - head/en_US.ISO8859-1/books/handbook/network-servers X-SVN-Group: doc-head X-SVN-Commit-Author: emaste X-SVN-Commit-Paths: head/en_US.ISO8859-1/books/handbook/network-servers X-SVN-Commit-Revision: 53617 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Nov 2019 17:43:36 -0000 Author: emaste (src committer) Date: Wed Nov 20 17:43:36 2019 New Revision: 53617 URL: https://svnweb.freebsd.org/changeset/doc/53617 Log: delete amd(8) section from the handbook - it is obsolete In addition amd has been disabled by default in src r354902. Reviewed by: bcr Approved by: bcr Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D22459 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 Wed Nov 20 06:31:13 2019 (r53616) +++ head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml Wed Nov 20 17:43:36 2019 (r53617) @@ -798,110 +798,6 @@ rpc_statd_enable="YES" for further details. - - - Automating Mounts with &man.amd.8; - - - - - Wylie - Stilwell - - Contributed by - - - - - - - Chern - Lee - - Rewritten by - - - - - amd - - automatic mounter daemon - - - The automatic mounter daemon, - amd, automatically mounts a remote - file system whenever a file or directory within that file - system is accessed. File systems that are inactive for a - period of time will be automatically unmounted by - amd. - - This daemon provides an alternative to modifying - /etc/fstab to list every client. It - operates by attaching itself as an NFS - server to the /host and - /net directories. When a file is - accessed within one of these directories, - amd looks up the corresponding - remote mount and automatically mounts it. - /net is used to mount an exported file - system from an IP address while - /host is used to mount an export from a - remote hostname. For instance, an attempt to access a file - within /host/foobar/usr would tell - amd to mount the - /usr export on the host - foobar. - - - Mounting an Export with - <application>amd</application> - - In this example, showmount -e shows - the exported file systems that can be mounted from the - NFS server, - foobar: - - &prompt.user; showmount -e foobar -Exports list on foobar: -/usr 10.10.10.0 -/a 10.10.10.0 -&prompt.user; cd /host/foobar/usr - - - The output from showmount shows - /usr as an export. When changing - directories to /host/foobar/usr, - amd intercepts the request and - attempts to resolve the hostname - foobar. If successful, - amd automatically mounts the - desired export. - - To enable amd at boot time, add - this line to /etc/rc.conf: - - amd_enable="YES" - - To start amd now: - - &prompt.root; service amd start - - Custom flags can be passed to - amd from the - amd_flags environment variable. By - default, amd_flags is set to: - - amd_flags="-a /.amd_mnt -l syslog /host /etc/amd.map /net /etc/amd.map" - - The default options with which exports are mounted are - defined in /etc/amd.map. Some of the - more advanced features of amd are - defined in /etc/amd.conf. - - Consult &man.amd.8; and &man.amd.conf.5; for more - information. - - Automating Mounts with &man.autofs.5;