[autofs] fix options.
[vuplus_openvuplus_3.0] / meta-openvuplus / recipes-daemon / autofs / autofs / autofs.default
1 #
2 # Define default options for autofs.
3 #
4 # MASTER_MAP_NAME - default map name for the master map.
5 #
6 #MASTER_MAP_NAME="auto.master"
7 #
8 # TIMEOUT - set the default mount timeout (default 600).
9 #
10 TIMEOUT=5
11 #
12 # NEGATIVE_TIMEOUT - set the default negative timeout for
13 #                    failed mount attempts (default 60).
14 #
15 NEGATIVE_TIMEOUT=5
16 #
17 # MOUNT_WAIT - time to wait for a response from mount(8).
18 #              Setting this timeout can cause problems when
19 #              mount would otherwise wait for a server that
20 #              is temporarily unavailable, such as when it's
21 #              restarting. The default setting (-1) of waiting
22 #              for mount(8) usually results in a wait of around
23 #              3 minutes.
24 #
25 MOUNT_WAIT=5
26 #
27 # UMOUNT_WAIT - time to wait for a response from umount(8).
28 #
29 #UMOUNT_WAIT=12
30 #
31 # BROWSE_MODE - maps are browsable by default.
32 #
33 BROWSE_MODE="no"
34 #
35 # MOUNT_NFS_DEFAULT_PROTOCOL - specify the default protocol used by
36 #                              mount.nfs(8). Since we can't identify
37 #                              the default automatically we need to
38 #                              set it in our configuration.
39 #
40 #MOUNT_NFS_DEFAULT_PROTOCOL=3
41 #
42 # APPEND_OPTIONS - append to global options instead of replace.
43 #
44 #APPEND_OPTIONS="yes"
45 #
46 # LOGGING - set default log level "none", "verbose" or "debug"
47 #
48 #LOGGING="none"
49 #
50 # Define server URIs
51 #
52 # LDAP_URI - space seperated list of server uris of the form
53 #            <proto>://<server>[/] where <proto> can be ldap
54 #            or ldaps. The option can be given multiple times.
55 #            Map entries that include a server name override
56 #            this option.
57 #
58 #            This configuration option can also be used to
59 #            request autofs lookup SRV RRs for a domain of
60 #            the form <proto>:///[<domain dn>]. Note that a
61 #            trailing "/" is not allowed when using this form.
62 #            If the domain dn is not specified the dns domain
63 #            name (if any) is used to construct the domain dn
64 #            for the SRV RR lookup. The server list returned
65 #            from an SRV RR lookup is refreshed according to
66 #            the minimum ttl found in the SRV RR records or
67 #            after one hour, whichever is less.
68 #
69 #LDAP_URI=""
70 #
71 # LDAP__TIMEOUT - timeout value for the synchronous API  calls
72 #                 (default is LDAP library default).
73 #
74 #LDAP_TIMEOUT=-1
75 #
76 # LDAP_NETWORK_TIMEOUT - set the network response timeout (default 8).
77 #
78 #LDAP_NETWORK_TIMEOUT=8
79 #
80 # Define base dn for map dn lookup.
81 #
82 # SEARCH_BASE - base dn to use for searching for map search dn.
83 #               Multiple entries can be given and they are checked
84 #               in the order they occur here.
85 #
86 #SEARCH_BASE=""
87 #
88 # Define the LDAP schema to used for lookups
89 #
90 # If no schema is set autofs will check each of the schemas
91 # below in the order given to try and locate an appropriate
92 # basdn for lookups. If you want to minimize the number of
93 # queries to the server set the values here.
94 #
95 #MAP_OBJECT_CLASS="nisMap"
96 #ENTRY_OBJECT_CLASS="nisObject"
97 #MAP_ATTRIBUTE="nisMapName"
98 #ENTRY_ATTRIBUTE="cn"
99 #VALUE_ATTRIBUTE="nisMapEntry"
100 #
101 # Other common LDAP nameing
102 #
103 #MAP_OBJECT_CLASS="automountMap"
104 #ENTRY_OBJECT_CLASS="automount"
105 #MAP_ATTRIBUTE="ou"
106 #ENTRY_ATTRIBUTE="cn"
107 #VALUE_ATTRIBUTE="automountInformation"
108 #
109 #MAP_OBJECT_CLASS="automountMap"
110 #ENTRY_OBJECT_CLASS="automount"
111 #MAP_ATTRIBUTE="automountMapName"
112 #ENTRY_ATTRIBUTE="automountKey"
113 #VALUE_ATTRIBUTE="automountInformation"
114 #
115 # AUTH_CONF_FILE - set the default location for the SASL
116 #                          authentication configuration file.
117 #
118 #AUTH_CONF_FILE="/etc/autofs_ldap_auth.conf"
119 #
120 # MAP_HASH_TABLE_SIZE - set the map cache hash table size.
121 #                       Should be a power of 2 with a ratio roughly
122 #                       between 1:10 and 1:20 for each map.
123 #
124 #MAP_HASH_TABLE_SIZE=1024
125 #
126 # General global options
127 #
128 # If the kernel supports using the autofs miscellanous device
129 # and you wish to use it you must set this configuration option
130 # to "yes" otherwise it will not be used.
131 #USE_MISC_DEVICE="yes"
132 #
133 #OPTIONS=""
134 #