]> arthur.barton.de Git - netatalk.git/blob - config/netatalk.conf
disable papd by default
[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 guest, clrtxt, and dhx
24 # available options: uams_guest.so, uams_clrtxt.so, uams_dhx.so, 
25 #                    uams_randnum.so
26 #AFPD_UAMLIST="-U uams_clrtxt.so,uams_dhx.so"
27
28 # Change this to set the id of the guest user
29 AFPD_GUEST=nobody
30
31 # Set which daemons to run (papd is dependent upon atalkd):
32 ATALKD_RUN=yes
33 PAPD_RUN=no
34 CNID_METAD_RUN=yes
35 AFPD_RUN=yes
36 TIMELORD_RUN=no
37 A2BOOT_RUN=no
38
39 # Control whether the daemons are started in the background
40 ATALK_BGROUND=no
41
42 # export the charsets, read form ENV by apps
43 export ATALK_MAC_CHARSET
44 export ATALK_UNIX_CHARSET