Merge from vendor branch GCC:
[dragonfly.git] / contrib / amd / scripts / amd.conf-sample
1 # -*- text -*-
2 # A SAMPLE CONFIGURATION FILE FOR AMD
3
4 ##############################################################################
5 # GLOBAL OPTIONS SECTION (must be first in amd.conf file)
6 [ global ]
7 # (amd -n)
8 normalize_hostnames =           yes | no
9 # (amd -p)
10 print_pid =                     yes | no
11 pid_file =                      /dev/stdout | /var/run/amd.pid
12 # (amd -r)
13 restart_mounts =                yes | no
14 unmount_on_exit =               no | yes
15 # (amd -a)
16 auto_dir =                      /a
17 # duration in seconds that a looked up name remain cached (amd -c)
18 cache_duration =                300
19 # (amd -d)
20 local_domain =                  cs.columbia.edu
21 # (amd -k)
22 karch =                         sun4m
23 arch =                          sun4
24 # if you don't like autoconf picking up "sunos5" as the os-type, override it
25 os =                            sos5
26 # (amd -o)
27 osver =                         2.5.1
28 # full os name
29 full_os =                       linux-2.2.5
30 # OS vendor
31 vendor =                        redhat
32 # if you print_version after setting up "os", it will show it. (amd -v)
33 print_version =                 yes | no
34 # (amd -l)
35 log_file =                      /var/log/amd | syslog | syslog:facility
36 # NFS (RPC/UDP) retry interval, in tenths of secs (amd -t interval.counter)
37 nfs_retry_interval =            8
38 nfs_retransmit_counter =        110
39 # (amd -w)
40 dismount_interval =             120
41 # (amd -y)
42 nis_domain =                    nisDom-CS.columbia.edu
43 # (amd -x)
44 log_options =                   fatal,error,user,warn,info,map,stats,all
45 # (amd -D)
46 debug_options =         all,amq,daemon,fork,full,info,mem,mtab,str,test,trace
47 # (amd -S)
48 plock =                         no | yes
49 # selectors on /defaults are off by default
50 selectors_on_default =          yes | no
51 # should browsable maps show number of entries to df/statfs (default=no)
52 show_statfs_entries =           yes | no
53 # (hpux) cluster name (amd -C)
54 cluster =                       ???
55 # LDAP (Lightweight Directory Access Protocol) options
56 ldap_base =                     ldap.your.domain:389
57 ldap_hostports =                "ou=Marketing, o=AMD Ltd, c=US"
58 ldap_cache_seconds =            0 (default)
59 ldap_cache_maxmem =             131072 (default)
60 # default base name for hesiod maps
61 hesiod_base =                   automount
62 # these 5 options can be overridden by each map individually
63 browsable_dirs =                yes | no | full
64 map_options =                   cache:=all
65 map_type =                      file|hesiod|ndbm|nis|nisplus|passwd|union|ldap
66 mount_type =                    nfs | autofs
67 search_path =                   /etc/local:/etc/amdmaps:/misc/yp
68 # alternate RPC program number to register with the port mapper
69 portmap_program =               300019-300029
70 # Use fully qualified host names
71 fully_qualified_hosts =         yes | no
72
73 ##############################################################################
74 # DEFINE AN AMD MOUNT POINT
75 [ /home ]
76 # map name must be defined, all else are optional
77 map_name =                      /etc/amd.home | amd.home
78 map_options =                   cache:=all
79 # if map type is not defined, will search all map types (default)
80 map_type =                      file|hesiod|ndbm|nis|nisplus|passwd|union|ldap
81 search_path =                   /etc/local:/etc/amdmaps:/misc/yp
82 # an amd or autofs mount point
83 mount_type =                    nfs | autofs
84 browsable_dirs =                yes | no
85 # an optional tag to be used with amd -T tag. untagged entries are always
86 # used.  Tagged ones get used only if specified with "amd -T"
87 tag =                           test
88
89 ##############################################################################
90 # DEFINE ANOTHER AMD MOUNT POINT
91 [ /src ]
92 map_name = /usr/local/lib/amdmaps/amu.src
93 # regular amd (nfs) mount point (default)
94 # don't try the "autofs" type.  It is not implemented yet.
95 mount_type = nfs
96
97 ##############################################################################