Difference between revisions of "/etc/autofs/"
From GhostBSD Wiki
(→Content) |
|||
Line 7: | Line 7: | ||
===Content=== | ===Content=== | ||
+ | |||
+ | See also: | ||
+ | * [https://github.com/FreeBSDDesktop/freebsd-base/blob/master/usr.sbin/autofs/autofs/Makefile FreeBSDDesktop freebsd-base] | ||
+ | * [http://freebsdfoundation.blogspot.com/2015/03/ The "-media" Map] | ||
+ | |||
+ | Those are the components underneath the autofs(5), but how does it fit together? Let's start with the actual map. In FreeBSD, special maps (the ones with names starting with "-") are just executables in /etc/autofs/: | ||
{|class="wikitable" style="width:96.5%;background:#FFFFFF; border:2px solid #008000;text-align:left;padding: 10px" | {|class="wikitable" style="width:96.5%;background:#FFFFFF; border:2px solid #008000;text-align:left;padding: 10px" | ||
Line 14: | Line 20: | ||
|- | |- | ||
|include_ldap | |include_ldap | ||
− | | | + | |The https://www.freebsd.org/doc/handbook/network-ldap.html Lightweight Directory Access Protocol] (LDAP) is an application layer protocol used to access, modify, and authenticate objects using a distributed directory information service. |
|- | |- | ||
|include_nis | |include_nis |
Revision as of 09:12, 7 February 2020
Welcome to /etc/autofs/. |
Introduction
The automounter configuration consists of the auto_master configuration file, which assigns filesystem paths to map names, and maps, which contain actual mount information. The auto_master configuration file is used by the automount(8) command. Map files are read by the automountd(8) daemon. It is possible to add custom special maps by adding them, as executable maps named special_foo, to the /etc/autofs/ directory.
Content
See also:
Those are the components underneath the autofs(5), but how does it fit together? Let's start with the actual map. In FreeBSD, special maps (the ones with names starting with "-") are just executables in /etc/autofs/:
Files | Description |
---|---|
include_ldap | The https://www.freebsd.org/doc/handbook/network-ldap.html Lightweight Directory Access Protocol] (LDAP) is an application layer protocol used to access, modify, and authenticate objects using a distributed directory information service. |
include_nis | |
include_nis_nullfs | |
special_hosts | |
special_media | |
special_noauto | |
special_null | |
special_simple-mtpfs | |
Back to /etc/ |