Advertisement
gregthegeek

netatalk.conf

Nov 29th, 2011
387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. #### machine's AFPserver/AppleTalk name.
  2. ATALK_NAME=`echo ${HOSTNAME}|cut -d. -f1`
  3.  
  4. #### server (unix) and legacy client (<= Mac OS 9) charsets
  5. ATALK_UNIX_CHARSET='LOCALE'
  6. ATALK_MAC_CHARSET='MAC_ROMAN'
  7.  
  8. #### Don't Edit. export the charsets, read form ENV by apps
  9. export ATALK_UNIX_CHARSET
  10. export ATALK_MAC_CHARSET
  11.  
  12. #########################################################################
  13. # AFP specific configuration
  14. #########################################################################
  15.  
  16. #### Set which daemons to run.
  17. #### If you use AFP file server, run both cnid_metad and afpd.
  18. CNID_METAD_RUN=yes
  19. AFPD_RUN=yes
  20.  
  21. #### maximum number of clients that can connect:
  22. AFPD_MAX_CLIENTS=20
  23.  
  24. #### UAMs (User Authentication Modules)
  25. #### available options: uams_dhx.so, uams_dhx2.so, uams_guest.so,
  26. #### uams_clrtxt.so(legacy), uams_randnum.so(legacy)
  27. AFPD_UAMLIST="-U uams_dhx.so,uams_dhx2.so"
  28.  
  29. #### Set the id of the guest user when using uams_guest.so
  30. AFPD_GUEST=nobody
  31.  
  32. #### config for cnid_metad. Default log config:
  33. CNID_CONFIG="-l log_note"
  34.  
  35. #########################################################################
  36. # AppleTalk specific configuration (legacy)
  37. #########################################################################
  38.  
  39. #### Set which legacy daemons to run.
  40. #### If you need AppleTalk, run atalkd.
  41. #### papd, timelord and a2boot are dependent upon atalkd.
  42. ATALKD_RUN=no
  43. PAPD_RUN=no
  44. TIMELORD_RUN=no
  45. A2BOOT_RUN=no
  46.  
  47. #### Control whether the daemons are started in the background.
  48. #### If it is dissatisfied that legacy atalkd starts slowly, set "yes".
  49. ATALK_BGROUND=no
  50.  
  51. #### Set the AppleTalk Zone name.
  52. #### NOTE: if your zone has spaces in it, you're better off specifying
  53. #### it in afpd.conf
  54. ATALK_ZONE=@AFP
  55.  
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement