]> arthur.barton.de Git - netatalk.git/commitdiff
add to new env vars:
authorbfernhomberg <bfernhomberg>
Mon, 21 Jun 2004 15:18:30 +0000 (15:18 +0000)
committerbfernhomberg <bfernhomberg>
Mon, 21 Jun 2004 15:18:30 +0000 (15:18 +0000)
ATALK_MAC_CHARSET and ATALK_UNIX_CHARSET.
Used by papd and shell utils to determine charsets.

config/netatalk.conf

index 745c2e213c4e55e727b052db47db948ea2eb40cc..681b32094e6ffd67dd8e6aeddb50a9ab0ded805d 100644 (file)
@@ -8,6 +8,10 @@ AFPD_MAX_CLIENTS=20
 #ATALK_ZONE=@zone
 ATALK_NAME=`echo ${HOSTNAME}|cut -d. -f1`
 
+# specify the Mac and unix charsets to be used
+ATALK_MAC_CHARSET='MAC_ROMAN'
+ATALK_UNIX_CHARSET='LOCALE'
+
 # specify this if you don't want guest, clrtxt, and dhx
 # available options: uams_guest.so, uams_clrtxt.so, uams_dhx.so, 
 #                   uams_randnum.so
@@ -26,3 +30,7 @@ A2BOOT_RUN=no
 
 # Control whether the daemons are started in the background
 ATALK_BGROUND=no
+
+# export the charsets, read form ENV by apps
+export ATALK_MAC_CHARSET
+export ATALK_UNIX_CHARSET