summaryrefslogtreecommitdiff
path: root/net/netatalk-asun/files/patch-bd
blob: 68e5c4aa7e31b39c6b43886fd8da65a2494c51a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
--- config/afpd.conf.orig	Thu Dec 17 19:39:06 1998
+++ config/afpd.conf	Mon Mar  1 23:51:24 1999
@@ -1,35 +1,63 @@
 #
-# Format of lines in this file:
+# CONFIGURATION FOR AFPD
 #
-#    server [ -tcp ] [ -ddp ] [ -guest ] [ -loginmesg message ] ...
-#
-# To specify a line with the default server name, use a "-" as the
-# server name.
-#
-# There are a whole plethora of options available. Here they are for
-# your edification:
-#	toggles (-no<option> turns that option off; -<option> turns
-#		it on):
-#		transports: tcp, ddp, transall
-#		debug: nodebug (can only turn off debug)
-#		auth: cleartxt, afskrb, krbiv, guest, randnum, rand2num, 
-#                     authall (doesn't include randnum/rand2num)
-#               passwd: savepassword, setpassword
-#		user volumes: uservolfirst, 
-#		   	      nouservol (don't look for ~/.AppleVolumes)
-#		
-#
-#	options w/ arguments (-<option> <argument>):
-#	        defaultvol, systemvol, loginmesg, guestname 
-#	        address (binds a server to a specific address)
-#		port (has to be specified if more than one tcp server
-#                    is to be served)
-#               tickleval (sets the tickle interval in seconds)
-#		uampath, nlspath
-#		
-# Order of precedence:
-#	options in afpd.conf > command-line options > built-in options
+# Each line defines a virtual server that should be available.
+# Empty lines and lines beginning with `#' are ignored.
+# Options in this file will override both compiled-in defaults
+# and command line options.
+#
+# Format:
+#  - [options]	              to specify options for the default server
+#  "Server name" [options]   to specify an additional server
+#
+# The following options are available:
+#   Transport Protocols:
+#     -[no]tcp       Make AFP-over-TCP [not] available
+#     -[no]ddp       Make AFP over AppleTalk [not] available
+#     -transall      Make both available (default)
+#
+#   Authentication Methods:
+#     -[no]cleartxt  [Don't] Allow logins with password transmitted 
+#                    in the clear (same as -C on command line)
+#     -[no]guest     [Don't] Allow guest logins (will run as nobody/nogroup)
+#                    (same as -G on command line on command line)
+#     -[no]randnum
+#     -[no]rand2num  [Don't] Allow Random Number or Two-Way Random Number
+#                    exchange for transmitting the password (see below)
+#     -authall       Allow cleartxt and guest
+#
+#   Password Options:
+#     -[no]savepassword   [Don't] Allow clients to save password locally
+#
+#   AppleVolumes files:
+#     -defaultvol         Specifies path to AppleVolumes.default file
+#                         (default /usr/local/etc/AppleVolumes.default,
+#                         same as -f on command line)
+#     -systemvol          Specifies path to AppleVolumes.system file
+#                         (default /usr/local/etc/AppleVolumes.system,
+#                         same as -s on command line)
+#     -[no]uservolfirst   [Don't] read the user's ~/AppleVolumes or
+#                         ~/.AppleVolumes before reading
+#                         /usr/local/etc/AppleVolumes.default
+#                         (same as -u on command line)
+#     -[no]uservol        [Don't] Read the user's volume file
+#
+#     -nlspath            Prepend this path to each code page filename
+#                         in volume options (see afpd.8, default 
+#                         :RESDIR:/nls/netatalk).
+#
+#   Miscellaneous:
+#     -guestname "user"   Specifies the user name for the guest login
+#                         (default "nobody", same as -g on command line)
+#     -loginmesg "Message"  Client will display "Message" upon logging in
+#                         (no default, same as -l "Message" on command line)
+#     -address            Specifies the IP address the server should respond
+#                         to (default is the first IP address of the system)
+#     -port               Specifies the TCP port the server should respond
+#                         to (default is 548)
+#     -nodebug            Switch off debugging
 #
+
 # Some examples:
 #
 #	The simplest case is to not have an afpd.conf.
@@ -47,4 +75,3 @@
 #		"Guest Volume" -nocleartxt -loginmesg "Welcome guest!"
 #		"User Volume" -noguest -port 12000
 #		"special" -notcp -defaultvol <path> -systemvol <path>
-#