/etc/autofs/
From GhostBSD Wiki
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.
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/:
Content
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. See on GitHub |
include_nis | Network Information System (NIS) is designed to centralize administration of UNIX®-like systems such as Solaris™, HP-UX, AIX®, Linux, NetBSD, OpenBSD, and FreeBSD. man NIS was originally known as Yellow Pages but the name was changed due to trademark issues. This is the reason why NIS commands begin with yp. See on GitHub |
include_nis_nullfs | See on GitHub |
special_hosts | See on GitHub |
special_media | See: on GitHub |
special_noauto | See: on GitHub |
special_null | See: on GitHub |
special_simple-mtpfs | See: The "-media" Map |
Back to /etc/ |