]> arthur.barton.de Git - netatalk.git/blob - config/netatalk.conf
Consistently set default UAMs to DHX,DHX2. From HAT.
[netatalk.git] / config / netatalk.conf
1 # Appletalk configuration
2 # Change this to increase the maximum number of clients that can connect:
3 AFPD_MAX_CLIENTS=50
4
5 # Change this to set the machine's atalk name and zone, the latter containing
6 # the '@' sign as first character -- compare with nbp_name(3) if in doubt
7 #
8 # NOTE: If Netatalk should register AppleTalk services in the standard zone
9 #       then you need not to specify a zone name here.
10 #
11 #       If your zone has spaces in it, you're better off specifying
12 #       it in afpd.conf if you realize that your distribution doesn't
13 #       handle spaces correctly in the startup script. Remember to use
14 #       quotes here if the zone name contains spaces.
15 #
16 #ATALK_ZONE="@some zone"
17 ATALK_NAME=`echo ${HOSTNAME}|cut -d. -f1`
18
19 # specify the Mac and unix charsets to be used
20 ATALK_MAC_CHARSET='MAC_ROMAN'
21 ATALK_UNIX_CHARSET='LOCALE'
22
23 # specify this if you don't want dhx and dhx2
24 # available options: uams_guest.so, uams_clrtxt.so, 
25 #                    uams_dhx.so, uams_dhx2.so, 
26 #                    uams_randnum.so
27 #AFPD_UAMLIST="-U uams_dhx.so,uams_dhx2.so"
28
29 # Change this to set the id of the guest user
30 AFPD_GUEST=nobody
31
32 # Set which daemons to run (papd is dependent upon atalkd):
33 ATALKD_RUN=yes
34 PAPD_RUN=no
35 CNID_METAD_RUN=yes
36 AFPD_RUN=yes
37 TIMELORD_RUN=no
38 A2BOOT_RUN=no
39
40 # Control whether the daemons are started in the background
41 ATALK_BGROUND=no
42
43 # export the charsets, read form ENV by apps
44 export ATALK_MAC_CHARSET
45 export ATALK_UNIX_CHARSET